{!! Form::label('name', __('lang.name')) !!} {!! Form::text('name', null, ['class' => 'form-control', 'placeholder' => __('lang.name')]) !!} @if ($errors->has('name'))

{{ $errors->first('name') }}

@endif
{!! Form::label('symbol', __('lang.symbol')) !!} {!! Form::text('symbol', null, ['class' => 'form-control', 'placeholder' => __('lang.symbol')]) !!} @if ($errors->has('symbol'))

{{ $errors->first('symbol') }}

@endif
{!! Form::label('decimal_length', __('lang.decimal_length')) !!} {!! Form::number('decimal_length', null, ['class' => 'form-control', 'placeholder' => __('lang.decimal_length')]) !!} @if ($errors->has('decimal_length'))

{{ $errors->first('decimal_length') }}

@endif
{!! Form::label('description', __('lang.description')) !!} {!! Form::textarea('description', null, ['class' => 'form-control', 'placeholder' => __('lang.description'), 'rows' => '4']) !!} @if ($errors->has('description'))

{{ $errors->first('description') }}

@endif
{!! Form::label('actived', __('lang.active_status')) !!} {!! Form::select('actived', [ '1' => __('lang.enabled'),'0' => __('lang.disable')], isset($currency) ? $currency->actived : null, ['class' => 'form-control']) !!} @if ($errors->has('actived'))

{{ $errors->first('actived') }}

@endif