@extends('layouts.user_type.auth') @section('companyProfile.basicInfo')
@include('components.alert')

{{ isset($customers) ? $company_name : 'Create Customer Profile' }}

Admin Contact

@forelse($customers as $index => $customer) @empty @endforelse
No Name Email Status Actions

{{ $index + 1 }}

{{ $customer->name }}

{{ $customer->email }}

{{ ucfirst($customer->status) }}

@csrf @method('DELETE')
No customers found.
@endsection