@extends('layouts.app') @section('title', 'Founders — ' . config('gerg.name')) @section('content') @include('partials.page-hero', ['title' => "Founder's Desk", 'subtitle' => 'Leadership that drives diversified growth across the group.', 'breadcrumb' => 'Founders'])
@foreach (config('gerg.founders', []) as $founder) @php $imagePath = $founder['image'] ?? null; $hasImage = $imagePath && file_exists(public_path($imagePath)); @endphp
@if ($hasImage)
{{ $founder['name'] }}, {{ $founder['role'] }}
@else
Photo
@endif
{{ config('gerg.short_name') }} Leadership

{{ $founder['name'] }}

@if (!empty($founder['title']))

{{ $founder['title'] }}

@endif
@foreach ($founder['paragraphs'] ?? [] as $paragraph)

{{ $paragraph }}

@endforeach @if (!empty($founder['book'])) @php $book = $founder['book']; @endphp

Authored: "{{ $book['title'] }}"

Published {{ $book['month'] ?? '' }} {{ $book['year'] ?? '' }}. Sales proceeds benefit {{ $book['beneficiary'] }} {{ $book['beneficiary_note'] ?? '' }}.

@endif
@endforeach
@endsection