{{ $title }}
{{ Form::open(['url' => route('currencytype.update', $currency['id'] ), 'method'=>'PATCH', 'name' => 'currencytype', 'id' => 'currencytype']) }}
{{ Form::close() }}
{{ Form::label(__('lbl.type')) }}
{{ Form::text('type', $currency['type'], ["class"=>"form-control mxlen_5","id"=>"type","name"=>"type"]) }}
@if ($errors->has('type'))
{{ $errors->first('type') }}
@endif
{{ Form::label(__('lbl.description')) }}
{{ Form::text('description', $currency['description'], ["class"=>"form-control","placeholder"=>"","id"=>"description","name"=>"description"]) }}
@if ($errors->has('description'))
{{ $errors->first('description') }}
@endif
{{ Form::button(' '.__('lbl.save'),["type"=>"submit","name"=>"submit","value"=>"submit","class"=>"clickbtncommon btn-sm btn btn-primary ".$add_edit_allowed.""]) }}
{{ __('lbl.back') }}