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