@extends('backend.layouts.main') @section('title') View Agent Form @endsection @section('content')

Agent Form Details: {{ $agentForm->name }}

Basic Information

ID:
{{ $agentForm->id }}
Full Name:
{{ $agentForm->name }}
Phone Number:
{{ $agentForm->number }}

Additional Details

District:
{{ $agentForm->district->name ?? 'N/A' }}
Status:
@if ($agentForm->is_processed) Published @else Draft @endif
Created At:
{{ $agentForm->created_at->format('M d, Y H:i') }}
Updated At:
{{ $agentForm->updated_at->format('M d, Y H:i') }}

Address

{{ $agentForm->address }}

Message

{!! nl2br(e($agentForm->message)) ?: 'No message provided.' !!}
@endsection