@extends('layouts.frontend') @section('content')
{{ trans('global.create') }} {{ trans('cruds.logisticCityCode.title_singular') }}
@method('POST') @csrf
@if($errors->has('logistic'))
{{ $errors->first('logistic') }}
@endif {{ trans('cruds.logisticCityCode.fields.logistic_helper') }}
@if($errors->has('city'))
{{ $errors->first('city') }}
@endif {{ trans('cruds.logisticCityCode.fields.city_helper') }}
@if($errors->has('code'))
{{ $errors->first('code') }}
@endif {{ trans('cruds.logisticCityCode.fields.code_helper') }}
@endsection