@extends('super-admin.layouts.saas-app') @section('header-section') @include('super-admin.saas.section.breadcrumb') @endsection @section('content')
@if(!is_null($frontDetail->contact_html))
{!! $frontDetail->contact_html !!}
@endif
@if($frontDetail->address || $frontDetail->email || $frontDetail->phone)
@if($frontDetail->address)
@lang('app.address')
{{ $frontDetail->address }}
@endif @if($frontDetail->email)
@lang('app.email')
{{ $frontDetail->email }}
@endif @if($frontDetail->phone)
@lang('app.phone')
{{ $frontDetail->phone }}
@endif
{{--

Get in Touch

--}}
@endif {!! Form::open(['id'=>'contactUs', 'method'=>'POST']) !!}
@if ($global->google_recaptcha_status == 'active' && $global->google_recaptcha_v2_status == 'active')
@endif @if ($global->google_recaptcha_status == 'active' && $global->google_recaptcha_v3_status == 'active')
@endif
{!! Form::close() !!}
@endsection @push('footer-script') @if ($global->google_recaptcha_status == 'active' && $global->google_recaptcha_v2_status == 'active') @endif @if ($global->google_recaptcha_status == 'active' && $global->google_recaptcha_v3_status == 'active') @endif @endpush