@extends('layouts.app') @section('style') @endsection @section('content')
New Incident Report
@csrf
Personnel Information
Personnel Designation Post Contact No. On Duty Action
@if ($errors->has('pid'))
Please choose a personnel
@endif
Incident Information
@if ($errors->has('report_type'))
{{ $errors->first('report_type') }}
@endif
@if ($errors->has('location_of_incident'))
{{ $errors->first('location_of_incident') }}
@endif
@if ($errors->has('date'))
{{ $errors->first('date') }}
@endif
@if ($errors->has('time'))
{{ $errors->first('time') }}
@endif
@if ($errors->has('incident_title'))
{{ $errors->first('incident_title') }}
@endif
@if ($errors->has('incident_details'))
{{ $errors->first('incident_details') }}
@endif
@if ($errors->has('incident_cause'))
{{ $errors->first('incident_cause') }}
@endif
@if ($errors->has('follow_up_recommendations'))
{{ $errors->first('follow_up_recommendations') }}
@endif
@if ($errors->has('status'))
{{ $errors->first('status') }}
@endif
Reporters Information
@if ($errors->has('name'))
{{ $errors->first('name') }}
@endif
@if ($errors->has('designation'))
{{ $errors->first('designation') }}
@endif
@if ($errors->has('contact_number'))
{{ $errors->first('contact_number') }}
@endif
@section('script') @endsection @endsection