{!! Form::open(['method' => 'post', 'action' => ['Admin\PagesController@translate', $page->id], 'files' => true,'id' => 'translate_form']) !!}
{!! Form::text('title', $page->getTranslation('title', $lang), ['class' => 'form-control', 'placeholder' => translate('Title')]) !!}
{!! Form::textarea('description', $page->getTranslation('description', $lang), ['id' => 'editor1', 'class' => 'form-control', 'placeholder' => translate('Description')]) !!}
{!! Form::Close() !!}