{{-- resources/views/agent/client-show.blade.php --}} @extends('layouts.contentLayoutMaster') @section('title', 'Client Details') @section('content')

Client Details

Full Name: {{ $client->first_name }} {{ $client->last_name }}

Email: {{ $client->email }}

Phone: {{ $client->phone_number }}

Date of Birth: {{ $client->date_of_birth }}

City: {{ $client->city }}

State: {{ $client->state }}

Zip Code: {{ $client->zipcode }}

Country: {{ $client->country }}

Insurance Type: {{ $client->insurance_type }}

Status: {{ ucfirst($client->status) }}


@endsection