@section('title', __('Transportation countries')) @extends('pages.layout.main',['activePage'=>'transportation_countries.index']) @section('content')
@include('pages.layout.flash_messages') @include('components.breadCrumb.edit',['path' => route('transportation-countries.index'),'section' => __('Transportation countries')]) {!! Form::open(['route'=>['transportation-countries.update','transportation_country'=>$country->id], 'method'=>'post','class'=>'kt-form kt-form--labe-right','id'=>'kt_form','enctype'=>'multipart/form-data']) !!} @method('PATCH')
{!! Form::label('name', __('Name of Country (In Arabic)')) !!} {!! Form::text('name[ar]', $country->getTranslation('name','ar'), ['class' => 'form-control','required'=>"required"]) !!}
{!! Form::label('name', __('Name of Country (In English)')) !!} {!! Form::text('name[en]', $country->getTranslation('name','en'), ['class' => 'form-control','required'=>"required"]) !!}
{!! Form::select('active', [ '' => __('Status'), '1' => __('Active'), '0' => __('In-active') ],$country->active, ['class' => 'form-control','required'=>"required"]) !!}
{!! Form::label('photo', __( 'Photo'),['class'=>'form-label', ]) !!} {!! Form::file('flag', ['class' => 'form-control', "accept"=>"image/*"]) !!} @if($country->flag ?? null)
profile_image
@endif
{!! Form::submit(__('Update'), ['class' => 'btn btn-primary mt-2']) !!}
{!! Form::close() !!}
@endsection