{!! trans('home.contact_us') !!}

@if(getConfigValue('EMAIL_NAME'))
{{__('home.email')}} {{getConfigValue('EMAIL_NAME')}}
@endif @if(getConfigValue('NUMBER_NAME'))
{{__('home.phone')}} {{getConfigValue('NUMBER_NAME')}}
@endif @if (getConfigValue('FACEBOOK_NAME') || getConfigValue('INSTAGRAM_NAME') || getConfigValue('TWITTER_NAME') || getConfigValue('LINKEDIN_NAME') || getConfigValue('TIKTOK_NAME') || getConfigValue('YOUTUBE_NAME'))

{{__('home.rrss')}}

@if(getConfigValue('FACEBOOK_NAME')) @endif @if(getConfigValue('INSTAGRAM_NAME')) @endif @if(getConfigValue('LINKEDIN_NAME')) @endif @if(getConfigValue('TWITTER_NAME')) @endif @if(getConfigValue('TIKTOK_NAME')) @endif @if(getConfigValue('YOUTUBE_NAME')) @endif
@endif
{!! Form::open(['route' => 'site.contact.send', 'method' => 'POST', 'class' => 'contact-form']) !!} @csrf {!! (new App\Models\ReCaptcha)->field('contacto') !!}
{!! Form::text('name', null, ['class'=>'form-control', 'placeholder'=>trans('home.form_name'), 'required'=>'required']) !!}
{!! Form::email('email', null, ['class'=>'form-control', 'placeholder'=>trans('home.form_email'), 'required'=>'required']) !!}
{!! Form::text('reason', null, ['class'=>'form-control', 'placeholder'=>trans('home.form_subject'), 'required'=>'required']) !!}
{!! Form::textarea('msg', null, ['class'=>'form-control','rows'=>'7','placeholder'=>trans('home.form_message'),'required'=>'required']) !!}
@if(count($errors->all()) > 0 || (isset($_GET['test']) && $_GET['test'] == 'error'))

@foreach ($errors->all() as $er) - {{$er}}
@endforeach

@endif @if(session()->has('success') || (isset($_GET['test']) && $_GET['test'] == 'success'))

{{__('thank.alert')}}

@endif
{!! Form::close() !!}
{{--

© {{ "now"|date("Y") }} {{ 'footer.copyright'|_ }} - {{ 'footer.developed_by'|_ }} NOOLLAB

--}}