@extends('layouts.website') @section('title', $settings->site_name ?? config('app.name')) @section('header-class', '') @push('styles') @endpush {{-- ═══════════════════════════════════ HERO BANNER ═══════════════════════════ --}} @section('hero') @endsection @section('content') {{-- ═══════════════════════════════════ ABOUT ═════════════════════════════════ --}}
@if($settings && $settings->logo_path)
{{ $settings->site_name ?? 'FISEC INDIA' }}
@else
About
@endif
Who We Are

{{ $settings->site_name ?? 'FISEC INDIA' }}

{{-- @if($settings && $settings->header_text)

{{ $settings->header_text }}

@endif --}} @if($settings && $settings->about_us)

{{ Str::limit($settings->about_us, 400) }}

@endif
{{-- ═══════════════════════════════════ SPORTS ════════════════════════════════ --}} @if($sports->isNotEmpty())
{{-- What We Play --}}

Sports at FISEC Games

@forelse($sports as $sp) @php $cover = $sp->images->first(); @endphp @empty

Sports will appear here after you add them.

@endforelse {{-- @foreach($sports as $sport) --}} {{-- @endforeach --}}
@endif
Upcoming Event

FISEC Games — Budapest 2026

{{ Str::limit("FISEC India is proud to represent the nation at this prestigious international school sports event recognised by the International Olympic Committee. Join us as we compete, connect, and celebrate the spirit of youth sport on the world stage", 400) }}

{{-- ═══════════════════════════════════ BUDAPEST 2026 CTA — BANNER STRIP ═══════ --}} {{--
2nd Upcoming Event

FISEC Games — Budapest 2026

13th July – 19th July 2026  •  Budapest, Hungary  •  76th FISEC-FICEP Games

FISEC India is proud to represent the nation at this prestigious international school sports event recognised by the International Olympic Committee. Join us as we compete, connect, and celebrate the spirit of youth sport on the world stage.

Read More
--}} {{-- ═══════════════════════════════════ PHOTO GALLERY ════════════════════════ --}} @if($albums->isNotEmpty())
Memories

Photo Gallery

@foreach($albums as $album) @php $cover = $album->images->first(); @endphp @endforeach
@endif {{-- ═══════════════════════════════════ VIDEO GALLERY ════════════════════════ --}} @if($videos->isNotEmpty())
Watch

Video Gallery

@foreach($videos as $video) @php $url = (string) $video->youtube_url; if (preg_match('~[?&]v=([^&]+)~', $url, $m)) { $vid = $m[1]; } elseif (preg_match('~youtu\.be/([^?&/]+)~', $url, $m)) { $vid = $m[1]; } elseif (preg_match('~/embed/([^?&/]+)~', $url, $m)) { $vid = $m[1]; } else { $vid = null; } $thumb = $vid ? 'https://img.youtube.com/vi/' . $vid . '/hqdefault.jpg' : asset('website/images/home-01/video-bg.jpg'); $embedUrl = $vid ? 'https://www.youtube.com/embed/' . $vid . '?autoplay=1&rel=0' : $url; @endphp
{{ $video->title }}
{{ $video->title }}
@endforeach
{{-- Video Modal --}} @endif {{-- ═══════════════════════════════════ CONTACT CTA ═══════════════════════════ --}} @if($settings && ($settings->address || $settings->email || $settings->contact_no))
Reach Us

Get In Touch

@if($settings->contact_no)
Phone

{{ $settings->contact_no }}

@endif @if($settings->email)
Email

{{ $settings->email }}

@endif @if($settings->address)
Address

{{ $settings->address }}

@endif
@endif @endsection @push('scripts') @endpush