@extends('backend.layouts.master') @section('title', 'Edit About Us — Sections') @section('content') @php $s = $sections; $media = fn ($path) => \App\Support\BreadcrumbImage::mediaUrl($path) ?: $path; @endphp

About Us — Section Content

@include('backend.partials.alerts')
@csrf @method('PUT')
{{-- HERO --}}
@if($page->breadcrumb_image)
@endif
{{-- STORY --}}
@if(!empty($s['story']['image']))
@endif
@foreach($s['story']['paragraphs'] as $i => $para) @endforeach @for($i = count($s['story']['paragraphs']); $i < count($s['story']['paragraphs']) + 1; $i++) @endfor @php $checks = $s['story']['checklist']; while (count($checks) < 8) { $checks[] = ''; } @endphp @foreach($checks as $i => $item) @endforeach
{{-- MVV --}}
@foreach($s['mvv']['cards'] as $i => $card)
Card {{ $i + 1 }}
@endforeach
{{-- STATS --}}
@foreach($s['stats']['items'] as $i => $item)
Stat {{ $i + 1 }}
@endforeach
{{-- TIMELINE --}}
@foreach($s['timeline']['items'] as $i => $item)
Milestone {{ $i + 1 }}
@endforeach
{{-- TEAM --}}
Advisors are managed in Team. Only section titles are edited here.
{{-- WHY --}}
@foreach($s['why']['cards'] as $i => $card)
USP {{ $i + 1 }}
@endforeach
{{-- SEO --}}
Publish
status))>
View About Page Back
@endsection