@extends('back.layouts.app',['title' => $title ]) @section('content')
@include('back.common_views.quicklinks')
If you would like to manage IP addresses BLOCKED or spam words from the Contact Form, Click here
@if ($errors->any())

Please correct the These error.

@foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
    @endif

    Office Address @php echo helptooltip('office_address') @endphp

    @php $cnt = 0; @endphp @foreach ($setting_result as $val) @php $cnt++; @endphp
    @csrf
    @if ($errors->has('business_name')) {{ $errors->first('business_name') }} @endif
    @if ($errors->has('email')) {{ $errors->first('email') }} @endif
    @if ($errors->has('telephone')) {{ $errors->first('telephone') }} @endif
    @if ($errors->has('mobile')) {{ $errors->first('mobile') }} @endif
    @if ($errors->has('fax')) {{ $errors->first('fax') }} @endif
    @if ($errors->has('address')) {{ $errors->first('address') }} @endif

    @endforeach

    Contact email recipients

    @php if (!empty($contact_email_result->to_email)) { $cc_emails = explode(',', $contact_email_result->to_email); if (count($cc_emails) > 0) { for ($i = 0; $i < count($cc_emails); $i++) { echo '' . $cc_emails[$i] . ''; } } } @endphp

    @php if (!empty($contact_email_result->cc_email)) { $cc_emails = explode(',', $contact_email_result->cc_email); if (count($cc_emails) > 0) { for ($i = 0; $i < count($cc_emails); $i++) { echo '' . $cc_emails[$i] . ''; } } } @endphp

    @php if (!empty($contact_email_result->bcc_email)) { $bcc_email = explode(',', $contact_email_result->bcc_email); if (count($bcc_email) > 0) { for ($i = 0; $i < count($bcc_email); $i++) { echo '' . $bcc_email[$i] . ''; } } } @endphp

    Show following Google Map on your contact us Form @php echo helptooltip('google_map') @endphp

    @php $statusVal = $contact_email_result->google_map_status; @endphp

    @endsection @section('beforeBodyClose') @endsection