@extends('layouts.site') @section('title', __('Contact') . ' ยท Digital Sandi Informasi') @section('content') @include('partials.navbar')
@php $team = $sections['team'] ?? null; @endphp

{{ $team->title ?? 'Meet Our Team' }}


{{ $team?->subtitle }}

@if ($team?->content)
@endif
@php $contact = $sections['contact'] ?? null; $contactMeta = $contact->meta ?? []; @endphp

{{ $contact->title ?? 'Contact With us' }}

{{ $contact?->content }}

{{ __('Phone') }}: {{ $contactMeta['phone'] ?? '' }}

@endsection