Currencies create/ edit page symbol position field issue solved.

This commit is contained in:
Cüneyt Şentürk 2020-02-14 14:58:02 +03:00
parent aa97e6ab16
commit 396b8635ca
2 changed files with 2 additions and 2 deletions

View File

@ -27,7 +27,7 @@
{{ Form::textGroup('symbol', trans('currencies.symbol.symbol'), 'font') }}
{{ Form::selectGroup('symbol_first', trans('currencies.symbol.position'), 'text-width', ['1' => trans('currencies.symbol.before'), '0' => trans('currencies.symbol.after')]) }}
{{ Form::selectGroup('symbol_first', trans('currencies.symbol.position'), 'text-width', ["1" => trans('currencies.symbol.before'), "0" => trans('currencies.symbol.after')], null, ['model' => 'form.symbol_first']) }}
{{ Form::textGroup('decimal_mark', trans('currencies.decimal_mark'), 'sign') }}

View File

@ -28,7 +28,7 @@
{{ Form::textGroup('symbol', trans('currencies.symbol.symbol'), 'font') }}
{{ Form::selectGroup('symbol_first', trans('currencies.symbol.position'), 'text-width', ['1' => trans('currencies.symbol.before'), '0' => trans('currencies.symbol.after')], $currency->symbol_first) }}
{{ Form::selectGroup('symbol_first', trans('currencies.symbol.position'), 'text-width', ['1' => trans('currencies.symbol.before'), '0' => trans('currencies.symbol.after')], $currency->symbol_first, ['model' => 'form.symbol_first']) }}
{{ Form::textGroup('decimal_mark', trans('currencies.decimal_mark'), 'sign') }}