@if($customFields)
{!! trans('lang.main_fields') !!}
@endif
{!! Form::label('name', trans("lang.currency_name"), ['class' => 'col-3 control-label text-right']) !!}
{!! Form::text('name', null, ['class' => 'form-control','placeholder'=> trans("lang.currency_name_placeholder")]) !!}
{{ trans("lang.currency_name_help") }}
{!! Form::label('symbol', trans("lang.currency_symbol"), ['class' => 'col-3 control-label text-right']) !!}
{!! Form::text('symbol', null, ['class' => 'form-control','placeholder'=> trans("lang.currency_symbol_placeholder")]) !!}
{{ trans("lang.currency_symbol_help") }}
{!! Form::label('code', trans("lang.currency_code"), ['class' => 'col-3 control-label text-right']) !!}
{!! Form::text('code', null, ['class' => 'form-control','placeholder'=> trans("lang.currency_code_placeholder")]) !!}
{{ trans("lang.currency_code_help") }}
{!! Form::label('decimal_digits', trans("lang.currency_decimal_digits"), ['class' => 'col-3 control-label text-right']) !!}
{!! Form::number('decimal_digits', null, ['class' => 'form-control','placeholder'=> trans("lang.currency_decimal_digits_placeholder")]) !!}
{{ trans("lang.currency_decimal_digits_help") }}
{!! Form::label('rounding', trans("lang.currency_rounding"), ['class' => 'col-3 control-label text-right']) !!}
{!! Form::number('rounding', null, ['class' => 'form-control','placeholder'=> trans("lang.currency_rounding_placeholder")]) !!}
{{ trans("lang.currency_rounding_help") }}
@if($customFields)
{!! trans('lang.custom_field_plural') !!}
{!! $customFields !!}
@endif
{{trans('lang.cancel')}}