@extends('frontend.layouts.app'.config('theme_layout')) @section('title', 'Contact | '.app_name()) @section('meta_description', '') @section('meta_keywords','') @push('after-styles') @endpush @section('content') @php $footer_data = json_decode(config('footer_data')); @endphp @if(session()->has('alert'))
{{session('alert')}}
@endif

@lang('labels.frontend.contact.keep_in_touch')

@if(($footer_data->social_links->status == 1) && (count($footer_data->social_links->links) > 0)) @endif

@lang('labels.frontend.contact.send_us_a_message')

@csrf
@if($errors->has('name')) {{$errors->first('name')}} @endif
@if($errors->has('email')) {{$errors->first('email')}} @endif
@if($errors->has('phone')) {{$errors->first('phone')}} @endif
@if($errors->has('message')) {{$errors->first('message')}} @endif @if(config('access.captcha.registration'))
{{ no_captcha()->display() }} {{ html()->hidden('captcha_status', 'true')->id('captcha_status') }} @if($errors->has('g-recaptcha-response'))

{{$errors->first('g-recaptcha-response')}}

@endif
@endif
@include('frontend.layouts.partials.contact_area') @endsection @push('after-scripts') @if(config('access.captcha.registration')) {{ no_captcha()->script() }} @endif @endpush