{!! Form::label('name', __('Information of this Visa'),['class' => 'h5']) !!}
{!! Form::label('name', __('Name of Country (In Arabic)'), ['class' => 'form-label required']) !!}
{!! Form::text('name[ar]', $country?->getTranslation('name','ar') ?? null, ['class' => 'form-control','required' => 'required']) !!}
{!! Form::label('name', __('Name of Country (In English)'), ['class' => 'form-label required']) !!}
{!! Form::text('name[en]', $country?->getTranslation('name','en') ?? null, ['class' => 'form-control','required' => 'required']) !!}
{!! Form::label('photo', __( 'Photo'),['class'=>'required']) !!}
{!! Form::select('active', [
'' => __('Status'),
'1' => __('Active'),
'0' => __('In-active')
],$country->active ?? null, ['class' => 'form-control','required' => 'required']) !!}
{!! Form::label('visa_types', __('Visa types'),['class' => 'form-label required']) !!}
{!! Form::label('name', __('Inputs of customer'),['class' => 'h5 form-label required']) !!}
{!! Form::button( __('Add Group')." +", ['class' => 'btn btn-info ','id'=>'addGroup']) !!}
{!! Form::label('name', __('Visa requirements'),['class' => 'h5 form-label required']) !!}
{!! Form::button(__('Add Group')." +", ['class' => 'btn btn-info ','id'=>'addRequirement']) !!}
@push('css')