@extends('layouts.front') @section('content') Contact @if(Session::has('contact_success')) {{ Session::get('contact_success') }} @endif @csrf Email : {{ Form::email('email', old('email'), ['class' => 'form-control text-bornage-dgrey border-0' . ($errors->has('email') ? ' is-invalid' : '') . ($inputBackgroundClass??''), 'required'=> true]) }} @if ($errors->has('email')) {{ $errors->first('email') }} @endif Nom : {{ Form::text('name', old('name'), ['class' => 'form-control text-bornage-dgrey border-0' . ($errors->has('name') ? ' is-invalid' : '') . ($inputBackgroundClass??''), 'required'=> true]) }} @if ($errors->has('name')) {{ $errors->first('name') }} @endif Téléphone : {{ Form::text('phone', old('phone'), ['class' => 'form-control text-bornage-dgrey border-0' . ($errors->has('phone') ? ' is-invalid' : '') . ($inputBackgroundClass??''), 'required'=> true]) }} @if ($errors->has('phone')) {{ $errors->first('phone') }} @endif Message : {{ Form::textarea('message', old('message'), ['class' => 'form-control text-bornage-dgrey border-0' . ($errors->has('message') ? ' is-invalid' : '') . ($inputBackgroundClass??''), 'required'=> true]) }} @if ($errors->has('message')) {{ $errors->first('message') }} @endif Envoyer ! @endsection
{{ Session::get('contact_success') }}