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