refs #451 Banking, Transfer and Account issue solved

This commit is contained in:
Cüneyt Şentürk
2018-08-18 15:56:24 +03:00
parent ca6788686e
commit b2e25990a1
4 changed files with 14 additions and 1 deletions

View File

@ -21,6 +21,9 @@
{{ Form::selectGroup('payment_method', trans_choice('general.payment_methods', 1), 'credit-card', $payment_methods, setting('general.default_payment_method')) }}
{{ Form::textGroup('reference', trans('general.reference'), 'file-text-o', []) }}
{!! Form::hidden('currency_code', null, ['id' => 'currency_code']) !!}
{!! Form::hidden('currency_rate', null, ['id' => 'currency_rate']) !!}
</div>
<!-- /.box-body -->

View File

@ -25,6 +25,9 @@
{{ Form::selectGroup('payment_method', trans_choice('general.payment_methods', 1), 'credit-card', $payment_methods, null) }}
{{ Form::textGroup('reference', trans('general.reference'), 'file-text-o', []) }}
{!! Form::hidden('currency_code', $currency->code, ['id' => 'currency_code']) !!}
{!! Form::hidden('currency_rate', $currency->rate, ['id' => 'currency_rate']) !!}
</div>
<!-- /.box-body -->