@extends('front.include.app') @section('content')
Banner

{{ $content->banner_title ?? 'ABOUT US' }}

@php $aboutImg = optional($homeContent)->getFirstMediaUrl('about_image') ?: asset('front/images/about-imag.webp'); @endphp

{{ optional($homeContent)->about_subhead ?? 'company overview' }}

{{ optional($homeContent)->about_heading ?? 'About Proactive Peers' }}

{!! nl2br(e(optional($homeContent)->about_description ?? 'Default description text here...')) !!}

@php $playImg = optional($homeContent)->getFirstMediaUrl('play_image') ?: asset('front/images/play-bg.webp'); @endphp
Play Video Background
{{-- ===================================================================== LATERAL PROGRAM SECTION ====================================================================== --}} @php $lateralPoints = $homeContent->lateral_points ?? []; $groupBoxes = $homeContent->group_boxes ?? []; @endphp

{{ $homeContent->lateral_heading ?? 'The LATERAL Program' }}

{!! nl2br(e(optional($homeContent)->lateral_description ?? 'The LATERAL Program description goes here...')) !!}

@if (count($lateralPoints))
    @foreach ($lateralPoints as $point)
  • {{ $point }}
  • @endforeach
@endif

{{ $homeContent->lateral_footer_text ?? 'Your loss does not erase your worth...' }}

{{-- Group Boxes at the bottom --}}

{{ optional($homeContent)->groups_heading ?? 'Groups at Proactive Peers Tools' }}

@foreach ($groupBoxes as $box) @if ($box)

{{ $box }}

@endif @endforeach
Mission Image

{{ $content?->mission_heading ?? 'Mission Statement' }}

{!! nl2br(e($content?->mission_description)) !!}

{{-- ===================================================================== TESTIMONIALS SECTION ====================================================================== --}}

{{ $homeContent->testimonials_subhead ?? 'Testimonials' }}

{{ $homeContent->testimonials_heading ?? 'Stories of Strength and Recovery' }}

@forelse($testimonials as $t)
    @for ($i = 1; $i <= 5; $i++)
  • @endfor

{{ $t->message }}

{{ $t->name }}
@empty

No testimonials available at the moment.

@endforelse
Vision Image

{{ $content?->vision_heading ?? 'Our Vision' }}

{!! nl2br(e($content?->vision_description)) !!}

@endsection