@extends('layouts.admin') @section('content')
{{ trans('global.create') }} {{ trans('cruds.maintenance.title_singular') }}
@csrf {{-- Remove the user select completely --}}
@if($errors->has('unit'))
{{ $errors->first('unit') }}
@endif {{ trans('cruds.maintenance.fields.unit_helper') }}
@if($errors->has('specify'))
{{ $errors->first('specify') }}
@endif {{ trans('cruds.maintenance.fields.specify_helper') }}
@if($errors->has('images'))
{{ $errors->first('images') }}
@endif {{-- No trans here, or add your own helper text --}}
@endsection