@extends('layouts.master') @section('title', 'Client Registry') @section('content')

Client Registry

Add clients and manage the registry in one place.

{{ count($clients ?? []) }}
Total Clients

Add New Client

@if(session('success'))
{{ session('success') }}
@endif @if($errors->any())
    @foreach($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@csrf

Core Identifiers

Contact Information

Professional / Legal Context

Engagement Details

Clients List

@foreach($clients ?? [] as $client) @endforeach
Client ID Name Contact Client Type Occupation Assigned To Actions
{{ $client->client_id ?? 'N/A' }}
{{ $client->first_name }} {{ $client->last_name }}
{{ $client->national_id ?? 'N/A' }}
{{ $client->phone_primary ?? 'N/A' }}
{{ $client->email ?? 'N/A' }}
{{ $client->client_type ?? 'N/A' }}
{{ $client->employer_name ?? 'N/A' }}
{{ $client->position_role ?? '' }}
{{ $client->assigned_lawyer ?? 'N/A' }}
View Edit
@csrf @method('DELETE')
No clients added yet. Fill the form above and click "Add Client" to get started.
@endsection