2020-12-17 15:26:51 +03:00
|
|
|
<div>
|
2020-12-21 10:24:36 +03:00
|
|
|
<div>
|
2020-12-17 15:26:51 +03:00
|
|
|
@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' => urldecode($confirm_url),
|
|
|
|
'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 14:57:54 +03:00
|
|
|
{!! Form::hidden('payment_method', $setting['code']) !!}
|
|
|
|
{!! Form::hidden('type', 'income') !!}
|
|
|
|
|
|
|
|
{!! Form::close() !!}
|
2020-12-17 15:26:51 +03:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|