@extends('front.layouts.app') @section('content')

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

@if(session('success'))
{{ session('success') }}
@endif
@csrf
@if($errors->has('date_of_incident'))
The date or period of contact field is required.
@endif
@if($errors->has('officer_name'))
The name of lawyer field is required.
@endif
@if($errors->has('department'))
The name and location of law firm field is required.
@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