{!! Form::label('name', trans('app.form.name').'*', ['class' => 'with-help']) !!} {!! Form::text('name', null, ['class' => 'form-control', 'placeholder' => trans('app.placeholder.name'), 'required']) !!}
{!! Form::label('symbol', trans('app.form.symbol').'*', ['class' => 'with-help']) !!} {!! Form::text('symbol', null, ['class' => 'form-control', 'placeholder' => trans('app.placeholder.symbol'), 'required']) !!}
{!! Form::label('iso_code', trans('app.form.iso_code').'*', ['class' => 'with-help']) !!} {!! Form::text('iso_code', null, ['class' => 'form-control', 'placeholder' => trans('app.placeholder.iso_code'), 'required']) !!}
{!! Form::label('subunit', trans('app.form.subunit').'*', ['class' => 'with-help']) !!} {!! Form::text('subunit', null, ['class' => 'form-control', 'placeholder' => trans('app.placeholder.subunit'), 'required']) !!}
{!! Form::label('symbol_first', trans('app.form.symbol_first').'*', ['class' => 'with-help']) !!} {!! Form::select('symbol_first', ['1' => trans('app.yes'), '0' => trans('app.no')], isset($currency) ? null : 1, ['class' => 'form-control select2-normal', 'placeholder' => trans('app.placeholder.select')]) !!}
{!! Form::label('thousands_separator', trans('app.form.thousands_separator').'*', ['class' => 'with-help']) !!} {!! Form::select('thousands_separator', [',' => ',', '.' => '.', ' ' => 'Space( )'], Null, ['class' => 'form-control select2-normal', 'placeholder' => trans('app.placeholder.select'), 'required']) !!}
{!! Form::label('decimal_mark', trans('app.form.decimal_mark').'*', ['class' => 'with-help']) !!} {!! Form::select('decimal_mark', [',' => ',', '.' => '.'], Null, ['class' => 'form-control select2-normal', 'placeholder' => trans('app.placeholder.select'), 'required']) !!}

* {{ trans('app.form.required_fields') }}