akaunting/modules/OfflinePayments/Resources/views/show.blade.php

32 lines
1022 B
PHP
Raw Normal View History

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