@php $contacts = $options->theme->contacts; $show_page_header = 1; $page_title = $contacts->page_title('Contact Us'); $socials = $options->theme->socials; $list = ['facebook', 'twitter', 'instagram', 'youtube', 'linkedin']; $layout = $contacts->layout(1); @endphp @extends($_layout . 'master') @section('title', $page_title) @section('breadcrumb.title', $page_title) @section('header.type', 'light') @if ($contacts->page_description) @section('meta_description', $contacts->page_description) @endif @include($_lib . 'register-meta') @section('content') @switch($layout) @case(3) {!! $html->contact_contents ? $html->contact_contents->components : '' !!} @break @case(2) @break @default

{{ $contacts->email_label('Mail Address') }}

{{ $email }}

{{ $contacts->address_label('Phone Number') }}

{{ $contacts->address($siteinfo->address) }}

{{ $contacts->phone_label('Phone Number') }}

{{ $phone }}

{{ $contacts->form_title('Drop us a line') }}

@if ($contacts->form_description)

{{ $contacts->form_description }}

@endif
@csrf
@endswitch @endsection