@php $team = $sections['team'] ?? null; @endphp
@if ($team?->content)
@endif
{{ $team->title ?? 'Meet Our Team' }}
{{ $team?->subtitle }}
@php
$contact = $sections['contact'] ?? null;
$contactMeta = $contact->meta ?? [];
@endphp
{{ $contact->title ?? 'Contact With us' }}
{{ $contact?->content }}
{{ __('Phone') }}: {{ $contactMeta['phone'] ?? '' }}
{{ __('E-mail') }}: {{ $contactMeta['email'] ?? '' }}