@extends('admin.layouts.master') @section('title', 'Edit Enquiry') @section('content')

{{ __('Edit Enquiry') }}

@csrf
@if ($errors->has('name'))

{{ $errors->first('name') }}

@endif
@if ($errors->has('email'))

{{ $errors->first('email') }}

@endif
@if ($errors->has('phone_no'))

{{ $errors->first('phone_no') }}

@endif
@if ($errors->has('subject'))

{{ $errors->first('subject') }}

@endif
@if ($errors->has('enquiry_message'))

{{ $errors->first('enquiry_message') }}

@endif
@if ($errors->has('status'))

{{ $errors->first('status') }}

@endif
@if ($errors->has('followup_date'))

{{ $errors->first('followup_date') }}

@endif
@if ($errors->has('followup_type'))

{{ $errors->first('followup_type') }}

@endif
@if ($errors->has('remarks'))

{{ $errors->first('remarks') }}

@endif
@endsection