@extends('frontend.master', ['activePage' => 'contact']) @section('title', __('Contact Us')) @section('content') @php $social = \App\Models\Setting::find(1); $logo = \App\Models\Setting::find(1)->logo; $admin = \App\Models\User::find(1); @endphp
{{-- scroll --}}

{{ __('Contact us') }}

@if (!isset($data->lat))
{{ __('Google Map or Contact Address not configured by the admin yet') }}
@endif

{{ __('Email') }}

{{ $data->email ?? '' }}

{{ __('Phone') }}

{{ $data->phone ?? '' }}

{{ __('Address') }}

{{ $data->address ?? '' }}

{{ __('Social') }}

@php $social = \App\Models\Setting::find(1); @endphp
{{-- Contact Us --}}
@csrf

{{ __('Contact Us') }}

@php $gmapkey = \App\Models\Setting::find(1)->map_key; @endphp @endsection