@extends('frontend.layouts.master') @php $hero = $services['hero'] ?? []; $intro = $services['intro'] ?? []; $cards = $services['cards'] ?? []; $cta = $services['cta'] ?? []; $heroTitle = e($hero['title'] ?? 'Our').' '.e($hero['title_accent'] ?? 'Services').''; @endphp @section('title', $pageMeta['meta_title'] ?? 'Our Services | FBA UK LTD') @section('meta_description', $pageMeta['meta_description'] ?? 'End-to-end education support for Home and International students with FBA UK LTD.') @section('meta_keywords', $pageMeta['meta_keywords'] ?? 'education services, student admissions, student finance, fba uk') @section('meta_robots', $pageMeta['meta_robots'] ?? 'index, follow') @section('canonical', $pageMeta['canonical_url'] ?? url()->current()) @section('og_title', $pageMeta['og_title'] ?? ($pageMeta['meta_title'] ?? 'Our Services | FBA UK LTD')) @section('og_description', $pageMeta['og_description'] ?? ($pageMeta['meta_description'] ?? '')) @section('og_image', $pageMeta['og_image'] ?? asset('frontend/assets/images/Fbalogo.webp')) @section('content') @include('frontend.partials.page-hero', [ 'currentPage' => $hero['breadcrumb'] ?? 'Services', 'title' => $heroTitle, 'subtitle' => $hero['subtitle'] ?? '', 'bgImage' => $pageMeta['breadcrumb_image'] ?? null, ])

{{ $intro['title'] ?? '' }}

{{ $intro['text'] ?? '' }}

@foreach($cards as $i => $card)

{{ $card['title'] ?? '' }}

{{ $card['text'] ?? '' }}

@endforeach
@if(!empty($cta['title']) || !empty($cta['primary_label']))

{{ $cta['title'] ?? '' }}

{{ $cta['text'] ?? '' }}

@if(!empty($cta['primary_label'])) {{ $cta['primary_label'] }} @endif @if(!empty($cta['secondary_label'])) {{ $cta['secondary_label'] }} @endif
@endif
@endsection