@extends('layouts.app') @section('content')
New Insurance
@csrf
Company Information
@if ($errors->has('company_name'))
{{ $errors->first('company_name') }}
@endif
@if ($errors->has('address'))
{{ $errors->first('address') }}
@endif
@if ($errors->has('email'))
{{ $errors->first('email') }}
@endif
@if ($errors->has('telephone_number'))
{{ $errors->first('telephone_number') }}
@endif
@if ($errors->has('mobile_number'))
{{ $errors->first('mobile_number') }}
@endif
Agent Information
@if ($errors->has('agent_first_name'))
{{ $errors->first('agent_first_name') }}
@endif
@if ($errors->has('agent_last_name'))
{{ $errors->first('agent_last_name') }}
@endif
@if ($errors->has('agent_designation'))
{{ $errors->first('agent_designation') }}
@endif
@if ($errors->has('agent_email'))
{{ $errors->first('agent_email') }}
@endif
@if ($errors->has('agent_telephone_number'))
{{ $errors->first('agent_telephone_number') }}
@endif
@if ($errors->has('agent_mobile_number'))
{{ $errors->first('agent_mobile_number') }}
@endif
@section('script') @endsection @endsection