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

Add Lawyer

@if(session('success'))
{{ session('success') }}
@endif
Back to Lawyer Management
@csrf

Lawyer Information

Existing Lawyers

@if($lawyers->count() > 0) @foreach($lawyers as $lawyer) @endforeach
Lawyer ID Name Email Phone Specialization Status Actions
{{ $lawyer->lawyer_id }} {{ $lawyer->full_name }} {{ $lawyer->email }} {{ $lawyer->phone_primary }} {{ $lawyer->specialization }} {{ $lawyer->status }} Edit
@csrf @method('DELETE')
@else

No lawyers added yet.

@endif
@endsection