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

{{ __('Import Country (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
{{{__('Field Name')}}} {{{__('Set Field')}}}
{{__('Title')}}

{{ __('Select country and only unique countries added automatically') }}

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