@extends('frontend-rtl.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
@include('frontend.layouts.partials.contact_area') @endsection