{{-- resources/views/admin/corporateclient/addcorporate.blade.php --}} @extends('layouts.main') @section('title', 'Corporate Client Management') @section('content')
{{-- Page Header --}}

Corporate Client Management

Add and manage corporate client users

{{-- Add Form --}}
{{-- Card Header --}}
Add Corporate Client
{{-- Card Body --}}
{{-- Success Message --}} @if(session('success'))
{{ session('success') }}
@endif {{-- Validation Errors --}} @if($errors->any())
    @foreach($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif {{-- Form --}}
@csrf
{{-- Name --}}
{{-- Email --}}
{{-- Password --}}
{{-- Department --}}
{{-- Employee ID --}}
{{-- Submit --}}
{{-- List Section --}}
{{-- Table Header --}}
Corporate Client List
{{-- Table --}}
@forelse($corporateclients as $client) {{-- Action Buttons --}} @empty @endforelse
ID Name Email Department Employee ID Created At Action
{{ $client->id }} {{ $client->corporateclient_name }} {{ $client->corporateclient_email }} {{ $client->corporateclient_department }} {{ $client->employee_id }} {{ $client->created_at->format('d M Y') }}
{{-- Edit Button --}} {{-- Delete Button --}}
No Corporate Clients Found
@endsection