@extends('layouts.app') @section('title', 'Manage Clients') @push('styles') @endpush @section('content')

Super Admin | Manage Banned Clients

@foreach ($clients as $client) @endforeach
NAME PRIMARY LOCATION DATA ACTION
{{ $client->client_name ?? $client->name }} {{ $client->primaryLocation->address }} {{ $client->primaryDataFile->filename }}
{!! $clients->links() !!}
@if($message = Session::get('success') || $message = Session::get('warning') || $errors->any())
@if ($message = Session::get('success'))

{{ $message }}

@endif @if($errors->any()) {{-- @php dd($errors->all()); @endphp --}}
@foreach($errors->all() as $error)

Could not update client: {{ $error }}

@endforeach
@endif
@endif @foreach($clients as $client) @include('superadmin.client.modal-show', ['client' => $client]) @include('superadmin.client.modal-toggle-ban', ['client' => $client]) @endforeach {{-- --}} @endsection