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