{{ Form::label( 'code', trans('currencies.code'),['class' => 'col-lg-2 control-label']) }}
{{ Form::text('code', null, ['class' => 'form-control round', 'placeholder' => trans('currencies.code'),'maxlength '=>3]) }}
{{ Form::label( 'symbol', trans('currencies.symbol'),['class' => 'col-lg-2 control-label']) }}
{{ Form::text('symbol', null, ['class' => 'form-control round', 'placeholder' => trans('currencies.symbol'),'maxlength '=>3]) }}
{{ Form::label( 'rate', trans('currencies.rate'),['class' => 'col-lg-2 control-label']) }}
@if(isset($currencies)) {{ Form::text('rate', null, ['class' => 'form-control round', 'placeholder' => trans('currencies.rate'),'onkeypress'=>"return isNumber(event)",'maxlength '=>10]) }} @else {{ Form::text('rate', 1, ['class' => 'form-control round', 'placeholder' => trans('currencies.rate'),'onkeypress'=>"return isNumber(event)",'maxlength '=>10]) }} @endif {{trans('currencies.rate_info')}}
{{ Form::label( 'thousand_sep', trans('currencies.thousand_sep'),['class' => 'col-lg-2 control-label']) }}
{{ Form::label( 'decimal_sep', trans('currencies.decimal_sep'),['class' => 'col-lg-2 control-label']) }}
{{ Form::label( 'precision_point', trans('currencies.precision_point'),['class' => 'col-lg-2 control-label']) }}
{{ Form::label( 'symbol_position', trans('currencies.symbol_position'),['class' => 'col-lg-2 control-label']) }}
@section("after-scripts") @endsection