@extends('front.layout') @section('meta-keywords', "$seo->contact_meta_key") @section('meta-description', "$seo->contact_meta_desc") @section('content')

{{ __('Contact') }}

{{ __('Phone Number') }}
@php $fnumber = explode( ',', $setting->number ); for ($i=0; $i < count($fnumber); $i++) { echo '

'.$fnumber[$i].'

'; } @endphp
{{ __('Email Address') }}
@php $femail = explode( ',', $setting->email ); for ($i=0; $i < count($femail); $i++) { echo '

'.$femail[$i].'

'; } @endphp
{{ __('Office Location') }}

{{ $setting->address }}

{{ __('Opening Hours') }}

{{ $setting->opening_hours }}

{!! $sinfo->contact_map !!}
{{ $sinfo->contact_sub_title }}

{{ $sinfo->contact_title }}

@csrf

{{ $sinfo->contact_form_title }}

@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('subject'))

{{ $errors->first('subject') }}

@endif
@if ($errors->has('message'))

{{ $errors->first('message') }}

@endif
@if ($visibility->is_recaptcha == 1)
{!! NoCaptcha::renderJs() !!} {!! NoCaptcha::display() !!} @if ($errors->has('g-recaptcha-response')) @php $errmsg = $errors->first('g-recaptcha-response'); @endphp

{{__("$errmsg")}}

@endif
@endif
@endsection