@extends('frontend.layout') @section('title', ($content['title']) . ' — ' . config('app.name')) @php $c = $content ?? []; @endphp @section('content')

{{ $c['title'] }} Us

@if(!empty($c['subtitle']))

{{ $c['subtitle'] }}

@endif
@if(!empty($c['story']))

{{ $c['story'] }}

@endif @if(!empty($c['stats']) && is_array($c['stats']))
@foreach($c['stats'] as $stat) @if(!empty($stat['value']))
{{ $stat['value'] }}
{{ $stat['label'] ?? '' }}
@endif @endforeach
@endif @if(!empty($c['mission']))

{{ __("Our Mission") }}

{{ $c['mission'] }}

@endif
@endsection