@extends('frontend.layouts.master') @section('title', 'Frequently Asked Questions | FBA UK LTD') @section('meta_description', 'Answers to common questions about UK university admissions, Student Finance, courses and international study with FBA UK LTD.') @section('meta_keywords', 'FAQ, UK university admissions, student finance, FBA UK LTD') @section('canonical', route('faq')) @section('content') @include('frontend.partials.page-hero', [ 'currentPage' => 'FAQ', 'title' => 'Frequently Asked Questions', 'subtitle' => 'Quick answers about admissions, finance, courses and studying in the UK.', ])

FAQ

@forelse($grouped as $category => $items)

{{ $category }}

@foreach($items as $index => $faq) @php $faqId = 'faq-item-' . $faq->id; @endphp

{!! $faq->answer !!}
@endforeach
@empty

FAQs will appear here soon.

@endforelse
@endsection