@extends('frontend.frontend-page-master') @section('site-title') {{get_static_option('contact_page_'.$user_select_lang_slug.'_name')}} @endsection @section('page-title') {{get_static_option('contact_page_'.$user_select_lang_slug.'_name')}} @endsection @section('breadcrumb')
  • {{get_static_option('contact_page_'.$user_select_lang_slug.'_name')}}
  • @endsection @section('page-meta-data') @endsection @section('content')
    @if(get_static_option('contact_page_form_section_status') == 'on')

    {{get_static_option('contact_page_'.$user_select_lang_slug.'_form_section_title')}}

    {{get_static_option('contact_page_'.$user_select_lang_slug.'_form_section_description')}}

    @include('backend.partials.message') @if($errors->any())
      @foreach($errors->all() as $message)
    • {{$message}}
    • @endforeach
    @endif
    @csrf
    {!! render_form_field_for_frontend(get_static_option('contact_page_form_fields')) !!}
    @endif
    @if(get_static_option('contact_page_contact_info_section_status') == 'on')
      @foreach($all_contact_info as $data)
    • {{$data->title}}

      @php $desc = explode(';',$data->description) @endphp @foreach($desc as $item) {{$item}} @endforeach
    • @endforeach
    @endif @if(get_static_option('contact_page_google_map_section_status') == 'on')
    {!! render_embed_google_map(get_static_option('contact_page_map_section_address'),20) !!}
    @endif
    @endsection @section('scripts') @if(!empty(get_static_option('site_google_captcha_v3_site_key'))) @endif @endsection