@extends('layouts.master') @section('title', 'Add Client - Prolex Law Firm') @section('content')

Add New Client

@if(session('success'))
{{ session('success') }}
@endif @if($errors->any())
@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' }} Edit
@csrf @method('DELETE')
No clients added yet. Fill the form above and click "Add Client" to get started.
@endsection