@extends('frontend.layouts.master') @php $hero = $page['hero'] ?? []; $sidebar = $page['sidebar'] ?? []; $actions = $page['actions'] ?? []; $heroTitle = e($hero['title'] ?? 'International').' '.e($hero['title_accent'] ?? 'Students').''; @endphp @section('title', $pageMeta['meta_title'] ?? 'International Students | FBA UK LTD') @section('meta_description', $pageMeta['meta_description'] ?? 'Guidance for international students joining UK universities with FBA UK LTD.') @section('meta_keywords', $pageMeta['meta_keywords'] ?? 'international students, uk study, visa support, 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'] ?? 'International Students | 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'] ?? 'International', 'title' => $heroTitle, 'subtitle' => $hero['subtitle'] ?? '', 'bgImage' => $pageMeta['breadcrumb_image'] ?? null, ])
@endsection