@extends('layouts.frontend') @section('content')
{{ trans('global.create') }} {{ trans('cruds.city.title_singular') }}
@method('POST') @csrf
@if($errors->has('province'))
{{ $errors->first('province') }}
@endif {{ trans('cruds.city.fields.province_helper') }}
@if($errors->has('city_name'))
{{ $errors->first('city_name') }}
@endif {{ trans('cruds.city.fields.city_name_helper') }}
@if($errors->has('zipcode'))
{{ $errors->first('zipcode') }}
@endif {{ trans('cruds.city.fields.zipcode_helper') }}
@if($errors->has('sort'))
{{ $errors->first('sort') }}
@endif {{ trans('cruds.city.fields.sort_helper') }}
@endsection