@extends('admin.layouts.master') @section('title','States') @section('maincontent') @include('admin.layouts.topbar',$data)
{{ __('Add States')}}
@can('locations.state.create')
{{ __("Add State")}}
{{ __("Add State Manual")}}
@endcan
@foreach ($states as $state) @endforeach
#
{{ __('State') }}
{{ __('Country') }}
{{ __('Delete') }}
1
{{ $state->name }}
@if(isset($state->country)) {{ $state->country->nicename }} @endif
{{ __('Delete') }}
×
{{ __("Do you really want to delete these records? This process cannot be undone.")}}
{{__('Add State')}}
×
{{ csrf_field() }}
{{ __('Choose State') }} :
*
{{ __('Choose Country') }}:
@foreach ($country as $cou)
{{ $cou->name }}
@endforeach
{{ __('State') }}:
*
{{ __("Reset")}}
{{ __("Create")}}
@endsection