2020-03-06 13:24:17 +00:00
|
|
|
<div>
|
2020-12-21 07:24:36 +00:00
|
|
|
<div>
|
2020-03-06 13:24:17 +00:00
|
|
|
@if (!empty($setting['name']))
|
|
|
|
|
<h2>{{ $setting['name'] }}</h2>
|
|
|
|
|
@endif
|
2017-11-18 23:52:01 +00:00
|
|
|
|
2020-03-06 13:24:17 +00:00
|
|
|
@if (!empty($setting['description']))
|
2020-12-17 12:26:51 +00:00
|
|
|
<div class="well well-sm">{{ $setting['description'] }}</div>
|
2020-03-06 13:24:17 +00:00
|
|
|
@endif
|
2019-11-16 07:21:14 +00:00
|
|
|
</div>
|
2020-03-06 13:24:17 +00:00
|
|
|
<br>
|
2018-12-18 09:55:19 +00:00
|
|
|
|
2020-03-06 13:24:17 +00:00
|
|
|
<div class="buttons">
|
|
|
|
|
<div class="pull-right">
|
2020-12-17 12:26:51 +00:00
|
|
|
{!! Form::open([
|
2021-01-19 09:47:07 +00:00
|
|
|
'url' => route("portal.invoices.offline-payments.confirm", $invoice->id),
|
2020-12-17 12:26:51 +00:00
|
|
|
'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>
|
2021-01-19 11:57:54 +00:00
|
|
|
{!! Form::hidden('payment_method', $setting['code']) !!}
|
|
|
|
|
{!! Form::hidden('type', 'income') !!}
|
|
|
|
|
|
2020-12-17 12:26:51 +00:00
|
|
|
{!! Form::close() !!}
|
2020-03-06 13:24:17 +00:00
|
|
|
</div>
|
2017-11-18 23:52:01 +00:00
|
|
|
</div>
|
|
|
|
|
</div>
|