@extends('layouts.admin') @section('title', 'Merchant Profiles') @section('content')

Merchant Profiles

View and manage all merchant profiles and information

@forelse ($merchants as $merchant)
{{ strtoupper(substr($merchant->name, 0, 2)) }}

{{ $merchant->name }}

{{ $merchant->contact_person ?? 'N/A' }}

{{ $merchant->email }}

{{ $merchant->phone ?? 'N/A' }}

@empty

No merchant profiles found.

@endforelse
@if(method_exists($merchants, 'links'))
{{ $merchants->links() }}
@endif
@endsection