@extends('frontend.layouts.app') @section('title', 'About Us') @section('content') @php use Carbon\Carbon; use App\Helpers\Helper; @endphp {{-- Hero Section --}} @include('frontend.partials.hero', [ 'mainHeading' => app()->getLocale() == 'en' ? 'Experience the Difference' : 'फरकपनको अनुभव गर्नुहोस्', 'subHeading' => app()->getLocale() == 'en' ? 'Join us and start your journey today.' : 'आजै हाम्रो यात्रा सुरु गर्नुहोस्।', 'breadcrumb1' => [ 'name' => __('route.home'), 'route' => route('home'), ], 'breadcrumb2' => [ 'name' => __('route.school_profile'), 'route' => route('about-us'), 'class' => 'text-gray-400', ], 'breadcrumb3' => null, 'breadcrumb4' => null, ]) @include('frontend.homepage.partials.about-us', ['displayButton' => false, 'isHome' => false])

{{ __('aboutUs.know_more') }}

{!! __('aboutUs.our_journey_throuth_the_years') !!}

{{ __('aboutUs.mission') }}

{!! Helper::stripInlineStyle( app()->getLocale() == 'en' ? $aboutUs->mission_en : $aboutUs->mission_np ?? $aboutUs->mission_en, ) !!}

Mission Image
Vision Image

{{ __('aboutUs.vision') }}

{!! Helper::stripInlineStyle( app()->getLocale() == 'en' ? $aboutUs->vision_en : $aboutUs->vision_np ?? $aboutUs->vision_en, ) !!}

{{ __('aboutUs.chronology') }}

{!! __('aboutUs.our_journey_throuth_the_years') !!}

@foreach ($cronologies as $cronology)
{{ app()->getLocale() == 'en' ? $cronology->name_en : $cronology->name_np ?? $cronology->name_en }}
{!! Helper::stripInlineStyle( app()->getLocale() == 'en' ? $cronology->description_en : $cronology->description_np ?? $cronology->description_en, ) !!}
@endforeach
@endsection @push('scripts') @endpush