{{ Form::open(['route' => ['currency.update', 1], 'method' => 'PUT', 'files' => true] ) }}
{{trans('file.The field labels marked with * are required input fields')}}.
{{Form::text('name',null,array('required' => 'required', 'class' => 'form-control', 'placeholder' => 'Type currency name...'))}}
{{Form::text('code',null,array('required' => 'required', 'class' => 'form-control', 'placeholder' => 'Type currency code...'))}}
{{Form::text('exchange_rate',null,array('required' => 'required', 'class' => 'form-control', 'id' => 'edit_exchange_rate', 'placeholder' => 'Type exchange rate...'))}}