restart
This commit is contained in:
19
resources/views/paybox/send.blade.php
Normal file
19
resources/views/paybox/send.blade.php
Normal file
@@ -0,0 +1,19 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<title>Send Paybox payment</title>
|
||||
</head>
|
||||
<body>
|
||||
<form method="post" action="{{ $url }}" id="paybox-payment">
|
||||
@foreach ($parameters as $name => $value)
|
||||
<input type="hidden" name="{{ $name }}" value="{{ $value }}">
|
||||
@endforeach
|
||||
|
||||
<input type="submit" value="Send payment">
|
||||
</form>
|
||||
<script>
|
||||
document.getElementById("paybox-payment").submit();
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user