@extends('blog::_layouts.master') @section('title', __('messages.global.contact_us')) @section('css') {{-- reCAPTCHA --}} {!! htmlScriptTagJsApi() !!} @endsection @section('content') {{-- Header --}}

{{ __('messages.global.contact_us') }}

{{-- Starting gradient --}} @include('landing::_layouts/_partials/gradient-start', ['fill' => '#ffffff']) {{-- Flash Messages --}}
@include('landing::_layouts/_partials/flash_messages') @if (Session::has('errors'))
@endif
{{-- Contact Info --}}
{{-- Section content --}}
{{-- 1 --}}

Coordonnées

Animal Research ASBL
Rue Eudore Davio 33
4102 Seraing
Belgique

N° Association BE0744.541.019

{{-- 2 --}}

Numéro de téléphone

Support
+32 497 11 40 45
Du lundi au vendredi de 9h00 à 17h00

{{-- 3 --}}

Adresse e-mail

Général
info@animal-search.be

Support
support@animal-search.be

{{-- Contact Form --}}
{{-- Section title --}}

Formulaire de contact

{{-- Form --}}
{{-- CSRF --}} @csrf {{-- Name Field --}}
@if ($errors->has('name'))

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

@endif
{{-- Email Field --}}
@if ($errors->has('email'))

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

@endif
{{-- Subject Field --}}
@if ($errors->has('subject'))

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

@endif
{{-- Content Field --}}
@if ($errors->has('content'))

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

@endif
{{-- reCAPTCHA Field --}}
{!! htmlFormSnippet() !!} @if ($errors->has('g-recaptcha-response'))

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

@endif
{{-- Submit Button --}}
{{-- Ending gradient --}} @include('landing::_layouts/_partials/gradient-end', ['fill' => '#f7fafc']) @endsection