{{-- ═══ Corporate / Marketing about fields ═══ --}} {{-- Intro Section (title + subtitle) --}}

Intro Section

The main heading and description below the page header.

The large heading text. E.g. "Our vision is to transform bold ideas into impactful brand experiences."
{{-- Mission / Gradient Section --}}

Mission / Gradient Section

The gradient background section with your company mission statement.

{{-- Culture Section --}}

Culture Section

The "Culture" block with sticky scroll. Paragraphs appear as scrollable text.

Large background text behind the section.
{{-- Values Section --}}

Values Section

The "Values" block below Culture. Same sticky scroll layout.

{{-- Section Images --}}

Section Images

Images used in the parallax, culture, and values sections of the About page.

@php $corporateAboutImages = [ ['key' => 'image_parallax', 'label' => 'Parallax background', 'hint' => '1920 x 1080 px — full width'], ['key' => 'image_culture', 'label' => 'Culture section image', 'hint' => '800 x 1000 px — portrait'], ['key' => 'image_values', 'label' => 'Values section image', 'hint' => '800 x 1000 px — portrait'], ]; @endphp @foreach($corporateAboutImages as $ci)
@php $currentImg = $siteData['about'][$ci['key']] ?? ''; $imgUrl = $currentImg ? (filter_var($currentImg, FILTER_VALIDATE_URL) ? $currentImg : asset($currentImg)) : ''; @endphp @if($imgUrl)
{{ $ci['label'] }}
@endif {{ $ci['hint'] }}
@endforeach
{{-- Counters + CTA from default --}} @include('admin.site-data.about._default')