31 lines
1.0 KiB
PHP
Raw Normal View History

2020-03-06 16:24:17 +03:00
<div>
<div>
2020-03-06 16:24:17 +03:00
@if (!empty($setting['name']))
<h2>{{ $setting['name'] }}</h2>
@endif
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([
'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']) !!}
{!! 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>
</div>
</div>