@extends('frontend.layouts.master') @php $about = $about ?? \App\Data\AboutSections::defaults(); $hero = $about['hero']; $story = $about['story']; $mvv = $about['mvv']; $stats = $about['stats']; $timeline = $about['timeline']; $team = $about['team']; $why = $about['why']; $media = fn ($path) => \App\Support\BreadcrumbImage::mediaUrl($path) ?: ($path ?: ''); $link = function ($url) { if (!$url) return '#'; if (str_starts_with($url, 'http') || str_starts_with($url, '#') || str_starts_with($url, 'mailto:') || str_starts_with($url, 'tel:')) { return $url; } return url($url); }; $heroTitle = e($hero['title']); if (!empty($hero['title_accent'])) { $heroTitle .= ' '.e($hero['title_accent']).''; } @endphp @section('title', $pageMeta['meta_title'] ?? 'About Us | FBA UK LTD') @section('meta_description', $pageMeta['meta_description'] ?? 'Learn about FBA UK LTD — trusted UK education consultancy for Home and International students.') @section('meta_keywords', $pageMeta['meta_keywords'] ?? 'about fba uk, education consultancy, uk admissions') @section('meta_robots', $pageMeta['meta_robots'] ?? 'index, follow') @section('canonical', $pageMeta['canonical_url'] ?? url()->current()) @section('og_title', $pageMeta['og_title'] ?? ($pageMeta['meta_title'] ?? 'About Us | 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' => 'About Us', 'title' => $heroTitle, 'subtitle' => $hero['subtitle'], 'bgImage' => $pageMeta['breadcrumb_image'] ?? null, ])
{{ $story['image_alt'] }} @if(!empty($story['badge_title']) || !empty($story['badge_text']))
@if(!empty($story['badge_title'])){{ $story['badge_title'] }}@endif @if(!empty($story['badge_text'])){{ $story['badge_text'] }}@endif
@endif

{{ $story['title'] }}

@foreach($story['paragraphs'] as $para)

{{ $para }}

@endforeach
    @foreach($story['checklist'] as $item)
  • {{ $item }}
  • @endforeach
@if(!empty($story['cta_label'])) {{ $story['cta_label'] }} @endif
{{ $mvv['label'] }}

{{ $mvv['heading'] }} {{ $mvv['heading_accent'] }}

{{ $mvv['subtitle'] }}

@foreach($mvv['cards'] as $card)
@if(($card['style'] ?? '') === 'vision') @elseif(($card['style'] ?? '') === 'values') @else @endif

{{ $card['title'] }}

{{ $card['text'] }}

{{ $card['tag'] }}
@endforeach
{{ $stats['badge'] }}

{{ $stats['heading'] }}

@foreach($stats['items'] as $i => $item)
0{{ $item['suffix'] }}
{{ $item['label'] }}

{{ $item['desc'] }}

@endforeach
{{ $timeline['label'] }}

{{ $timeline['heading'] }} {{ $timeline['heading_accent'] }}

@foreach($timeline['items'] as $item)
{{ $item['year'] }}

{{ $item['title'] }}

{{ $item['text'] }}

@endforeach
{{ $team['label'] }}

{{ $team['heading'] }} {{ $team['heading_accent'] }}

{{ $team['subtitle'] }}

@forelse(($teamMembers ?? collect()) as $member)
@if($member->imageUrl()) {{ $member->name }} @endif

{{ $member->name }}

@if($member->role){{ $member->role }}@endif @if($member->bio)

{{ $member->bio }}

@endif
@empty

Our advisory team details will appear here soon.

@endforelse
{{ $why['label'] }}

{{ $why['heading'] }} {{ $why['heading_accent'] }}

@foreach($why['cards'] as $card)

{{ $card['title'] }}

{{ $card['text'] }}

@endforeach
@endsection