@extends('front.layouts.app') @section('content')
{!! isset($reviewPages->quote_section) ? $reviewPages->quote_section : '' !!}

{!! isset($reviewPages->heading) ? $reviewPages->heading : '' !!}

@if(session('success'))
{{ session('success') }}
@endif
@csrf
@if($errors->has('date_of_incident'))
{{ $errors->first('date_of_incident') }}
@endif
@if($errors->has('department'))
{{ $errors->first('department') }}
@endif
@if($errors->has('officer_name'))
{{ $errors->first('officer_name') }}
@endif
@if($errors->has('victim_or_confidential'))
{{ $errors->first('victim_or_confidential') }}
@endif
@if($errors->has('describe_the_incident'))
{{ $errors->first('describe_the_incident') }}
@endif
@if($errors->has('additional_describtion'))
{{ $errors->first('additional_describtion') }}
@endif
@endsection