@extends('layouts.frontend') @section('content')
{{ trans('global.create') }} {{ trans('cruds.state.title_singular') }}
@method('POST') @csrf
@if($errors->has('area'))
{{ $errors->first('area') }}
@endif {{ trans('cruds.state.fields.area_helper') }}
@if($errors->has('province_name'))
{{ $errors->first('province_name') }}
@endif {{ trans('cruds.state.fields.province_name_helper') }}
@if($errors->has('sort'))
{{ $errors->first('sort') }}
@endif {{ trans('cruds.state.fields.sort_helper') }}
@endsection