@extends('layouts.admin') @section('content')
{{ trans('global.create') }} {{ trans('cruds.unit.title_singular') }}
@csrf
@if($errors->has('name'))
{{ $errors->first('name') }}
@endif {{ trans('cruds.unit.fields.name_helper') }}
@if($errors->has('property'))
{{ $errors->first('property') }}
@endif {{ trans('cruds.unit.fields.property_helper') }}
@include('admin.units.fields', ['unit' => null])
@endsection