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

{{ __('Import City (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 @csrf @php $countries = \Modules\CountryManage\Entities\Country::all_countries(); @endphp @php $cities = \Modules\CountryManage\Entities\State::all_states(); @endphp
{{{__('Field Name')}}} {{{__('Set Field')}}}
{{__('Country')}}

{{ __('Select state country ') }}

{{__('State')}}

{{ __('Select cities state') }}

{{__('City')}}

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

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