{!! Form::open(['method' => 'post', 'action' => ['Admin\CategoryController@translate', $Category->id], 'files' => true, 'id' => 'translate_form']) !!}
{!! Form::text('title', $Category->getTranslation('title', $lang), ['class' => 'form-control', 'placeholder' => translate('Title')]) !!}
{!! Form::textarea('description', $Category->getTranslation('description', $lang), ['class' => 'form-control', 'placeholder' => translate('Description')]) !!}
@error('description')
{{ $message }}
@enderror
{!! Form::text('meta_title', $Category->getTranslation('meta_title', $lang), ['required' => 'required', 'class' => 'form-control', 'placeholder' => translate('Meta title')]) !!}
@error('meta_title')
{{ $message }}
@enderror
{!! Form::textarea('meta_description', $Category->getTranslation('meta_description', $lang), ['rows' => 4, 'class' => 'form-control', 'placeholder' => translate('Meta description')]) !!}
@error('meta_description')
{{ $message }}
@enderror
{!! Form::Close() !!}