@extends('admin.layouts.master') @section('title', 'Add States') @section('maincontent') @include('admin.layouts.topbar',$data)
@if ($errors->any())
@foreach($errors->all() as $error)
{{ $error}}
×
@endforeach
@endif
{{ __('Add State') }}
{{ __("Back")}}
{{csrf_field()}}
{{ __('Choose Country') }}:
*
{{ __('Choose Country') }}:
@foreach ($country as $c)
{{ $c->nicename }}
@endforeach
{{ __("Reset")}}
{{ __("Create")}}
@endsection