2021-01-19 14:57:54 +03:00

32 lines
1022 B
PHP

<div>
<div>
@if (!empty($setting['name']))
<h2>{{ $setting['name'] }}</h2>
@endif
@if (!empty($setting['description']))
<div class="well well-sm">{{ $setting['description'] }}</div>
@endif
</div>
<br>
<div class="buttons">
<div class="pull-right">
{!! Form::open([
'url' => route("portal.invoices.offline-payments.confirm", $invoice->id),
'id' => 'redirect-form',
'role' => 'form',
'autocomplete' => "off",
'novalidate' => 'true'
]) !!}
<button @click="onRedirectConfirm" type="button" id="button-confirm" class="btn btn-success">
{{ trans('general.confirm') }}
</button>
{!! Form::hidden('payment_method', $setting['code']) !!}
{!! Form::hidden('type', 'income') !!}
{!! Form::close() !!}
</div>
</div>
</div>