{!! Form::open(['method' => 'post', 'action' => ['Admin\CurrencyController@translate', $currency->id], 'files' => true,'id' => 'translate_form']) !!}
{!! Form::text('name', $currency->getTranslation('name', $lang), ['class' => 'form-control', 'placeholder' => translate('Name')]) !!}
{!! Form::text('symbol', $currency->getTranslation('symbol', $lang), ['class' => 'form-control', 'placeholder' => translate('Symbol')]) !!}
{!! Form::Close() !!}