@extends('backend.layout.master-tailwind') @section('title', __('Countries')) @section('content')

{{ __('Countries') }}

{{ $all_countries->total() }} {{ __('countries') }}

{{ __('Import CSV') }}
@if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@include('countrymanage::country.search-result')
{{-- Add Country Dialog --}}
{{ __('Add country') }}
@csrf
{{-- Edit Country Dialog --}}
{{ __('Edit country') }}
@csrf
@endsection @section('script') @include('countrymanage::country.country-js') @endsection