@component('layouts.app', [ 'title' => 'Authorized Agents', 'metaDescription' => 'Find an authorized Fintech agent near you — filter by address, yatayat, and route to get or recharge your card in person.', ]) @include('partials.page-hero', [ 'eyebrow' => 'Network', 'title' => 'Find an Authorized Agent', 'subtitle' => 'Get your card or recharge in person at one of our authorized agent counters across the valley.', ])
@foreach ($agents as $i => $agent)

{{ $agent->company_name }}

{{ $agent->contact_person }}

{{ $agent->contact_number }}
{{ $agent->address?->name ?? 'Address not specified' }}
{{ $agent->yatayat?->name ?? 'Yatayat not specified' }} @if ($agent->transportRoute) {{ $agent->transportRoute->name }} @endif
@endforeach

No agents match these filters

Try a different address, yatayat, or route.

@include('frontend.partials.home.cta') @endcomponent