@extends("front.$version.layout") @section('pagename') - {{__('Contact Us')}} @endsection @section('meta-keywords', "$be->contact_meta_keywords") @section('meta-description', "$be->contact_meta_description") @section('breadcrumb-title', $bs->contact_title) @section('breadcrumb-subtitle', $bs->contact_subtitle) @section('breadcrumb-link', __('Contact Us')) @section('content')
@php $addresses = explode(PHP_EOL, $bex->contact_addresses); @endphp @foreach ($addresses as $address)

{{$address}}

@endforeach
@php $phones = explode(',', $bex->contact_numbers); @endphp @foreach ($phones as $phone)

{{$phone}}

@endforeach
@php $mails = explode(',', $bex->contact_mails); @endphp @foreach ($mails as $mail)

{{$mail}}

@endforeach
{{convertUtf8($bs->contact_form_title)}}

{{convertUtf8($bs->contact_form_subtitle)}}

@csrf
@if ($errors->has('name'))

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

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

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

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

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

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

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

@endif
@if ($bs->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