@extends('layouts.admin') @section('content')
{{ trans('global.create') }} {{ trans('cruds.region.title_singular') }}
@csrf
@if($errors->has('name')) {{ $errors->first('name') }} @endif {{ trans('cruds.region.fields.name_helper') }}
@if($errors->has('code')) {{ $errors->first('code') }} @endif {{ trans('cruds.region.fields.code_helper') }}
@endsection