@php $documents = [ ['icon' => 'fa-id-card', 'title' => 'Personalized Card Application (KYC)', 'size' => '240 KB · PDF', 'cat' => 'Applications'], ['icon' => 'fa-building', 'title' => 'Corporate / Bulk Card Application', 'size' => '310 KB · PDF', 'cat' => 'Applications'], ['icon' => 'fa-triangle-exclamation', 'title' => 'Lost / Stolen Card Report Form', 'size' => '180 KB · PDF', 'cat' => 'Forms'], ['icon' => 'fa-rotate-left', 'title' => 'Refund Request Form', 'size' => '150 KB · PDF', 'cat' => 'Forms'], ['icon' => 'fa-user-graduate', 'title' => 'Student Discount Verification Form', 'size' => '120 KB · PDF', 'cat' => 'Forms'], ['icon' => 'fa-book', 'title' => 'Yatra Card User Guide', 'size' => '1.2 MB · PDF', 'cat' => 'Guides'], ['icon' => 'fa-map', 'title' => 'Partner Route Map', 'size' => '860 KB · PDF', 'cat' => 'Guides'], ['icon' => 'fa-file-contract', 'title' => 'Terms & Conditions', 'size' => '95 KB · PDF', 'cat' => 'Legal'], ['icon' => 'fa-shield-halved', 'title' => 'Privacy Policy', 'size' => '80 KB · PDF', 'cat' => 'Legal'], ]; $docCategories = ['All', 'Applications', 'Forms', 'Guides', 'Legal']; @endphp @component('layouts.app', [ 'title' => 'Download Forms', 'metaDescription' => 'Download Yatra Card forms and guides — KYC application, lost card report, refund request, and the user guide.', ]) @include('partials.page-hero', [ 'eyebrow' => 'Support', 'title' => 'Forms & Guides', 'subtitle' => 'Everything you need on paper, in case you prefer it that way.', ])
@foreach ($docCategories as $cat) @endforeach
@foreach ($documents as $i => $doc)

{{ $doc['title'] }}

{{ $doc['size'] }} · {{ $doc['cat'] }}

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