@extends('backend.layout.master') @section('title', __('Import States')) @section('style') @endsection @section('content')

{{ __('Import State (only csv file)') }}

@if(empty($import_data))
@csrf
{{__('only csv file are allowed with separate by (,) comma.')}}
@else @php $option_markup = ''; foreach(current($import_data) as $map_item ){ $option_markup .= ''; } @endphp
@csrf @php $all_countries = \Modules\CountryManage\Entities\Country::all_countries(); @endphp
{{{__('Field Name')}}} {{{__('Set Field')}}}
{{__('Country')}}

{{ __('Select your states country') }}

{{__('State')}}

{{ __('Select state and only unique states added automatically according to the selected country.') }}

{{__('Status')}}
@endif
@endsection @section('script') @endsection