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

{{ __('All States') }}

{{ $all_states->total() }} {{ __('states') }}

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