{{ translate('Edit country.') }}

{!! Form::open(['method' => 'patch', 'action' => ['Admin\CountryController@update', $country->id], 'files' => true]) !!}
@error('logo')
{{ $message }}
@enderror
{!! Form::text('title', $country->getTranslation('title', defaultLanguage()), ['class' => 'form-control', 'placeholder' => translate('Title')]) !!}
@error('title')
{{ $message }}
@enderror
{!! Form::text('code', $country->code, ['class' => 'form-control', 'placeholder' => translate('Code')]) !!}
@error('code')
{{ $message }}
@enderror
{!! Form::checkbox('active', null, $country->active, ['id' => 'Checkbox_0']) !!}
{!! Form::Close() !!}