@extends('layouts.app') @section('title', 'Contactez nous') @section('main_title_wrapper')

Contactez nous

@endsection @section('content')
@if (session('success')) @endif
{!! Form::model($contact, ['method' => 'POST', "url" => route('contactez-nous.post')]) !!}

Contactez nous

{!! Form::text('name', null, ["class" => "form-control", "required"]) !!} @if ($errors->has('name')) {{ $errors->first('name') }} @endif
{!! Form::email('email', null, ["class" => "form-control", "required"]) !!} @if ($errors->has('email')) {{ $errors->first('email') }} @endif
{!! Form::text('objet', null, ["class" => "form-control", "required"]) !!} @if ($errors->has('objet')) {{ $errors->first('objet') }} @endif
{!! Form::textarea('message', null, ["class" => "form-control", "required"]) !!} @if ($errors->has('message')) {{ $errors->first('message') }} @endif
{{--
{!! NoCaptcha::display() !!} @if ($errors->has('g-recaptcha-response')) Veuillez cocher ce champs @endif
--}}
{!! Form::close() !!} @if ($param)
{{ $param->adresse }}
{{ $param->telephone }}
{{ $param->fax }}
@endif @endsection