diff --git a/modules/OfflinePayments/Resources/views/show.blade.php b/modules/OfflinePayments/Resources/views/show.blade.php index 316b3c3d4..0abba7b55 100644 --- a/modules/OfflinePayments/Resources/views/show.blade.php +++ b/modules/OfflinePayments/Resources/views/show.blade.php @@ -5,44 +5,25 @@ @endif @if (!empty($setting['description'])) -
- {{ $setting['description'] }} -
+
{{ $setting['description'] }}
@endif
- + {!! Form::open([ + 'url' => route("portal.invoices.offline-payments.confirm", $document->id), + 'id' => 'redirect-form', + 'role' => 'form', + 'autocomplete' => "off", + 'novalidate' => 'true' + ]) !!} + + {!! Form::hidden('payment_method', $setting['code'], ['v-model' => 'form.payment_method']) !!} + {!! Form::close() !!}
- - diff --git a/modules/OfflinePayments/Resources/views/signed.blade.php b/modules/OfflinePayments/Resources/views/signed.blade.php index 5587f1f11..79f8fea92 100644 --- a/modules/OfflinePayments/Resources/views/signed.blade.php +++ b/modules/OfflinePayments/Resources/views/signed.blade.php @@ -38,3 +38,33 @@ }); }); //--> + +
+
+ @if (!empty($setting['name'])) +

{{ $setting['name'] }}

+ @endif + + @if (!empty($setting['description'])) +
{{ $setting['description'] }}
+ @endif +
+
+ +
+
+ {!! Form::open([ + 'url' => urldecode($confirm_url), + 'id' => 'redirect-form', + 'role' => 'form', + 'autocomplete' => "off", + 'novalidate' => 'true' + ]) !!} + + {!! Form::hidden('payment_method', $setting['code'], ['v-model' => 'form.payment_method']) !!} + {!! Form::close() !!} +
+
+