@extends('layouts.admin') @section('content')
{{ trans('global.create') }} {{ trans('cruds.incident.title_singular') }}
@csrf
{{ trans('cruds.incident.fields.user_helper') }}
@if($errors->has('type'))
{{ $errors->first('type') }}
@endif {{ trans('cruds.incident.fields.type_helper') }}
@if($errors->has('site'))
{{ $errors->first('site') }}
@endif {{ trans('cruds.incident.fields.site_helper') }}
@if($errors->has('level'))
{{ $errors->first('level') }}
@endif {{ trans('cruds.incident.fields.level_helper') }}
@if($errors->has('datetime'))
{{ $errors->first('datetime') }}
@endif {{ trans('cruds.incident.fields.datetime_helper') }}
@if($errors->has('images'))
{{ $errors->first('images') }}
@endif {{ trans('cruds.incident.fields.images_helper') }}
@endsection @section('scripts') @endsection