@extends('layouts.super-admin') @section('title', 'Client Management') @section('page_title', 'Client Management') @section('content')

Registered Clients

Add New Client
@forelse($clients as $client) @empty @endforelse
Client Name Email Branches Status Actions
{{ $client->name }} {{ $client->email }} {{ $client->branches_count }} @if($client->active) Active @else Inactive @endif
Edit
@csrf @method('DELETE')
No clients found.
{{ $clients->links() }}
@endsection