@extends('layouts.front') @section('content')

Contact

@if(Session::has('contact_success'))

{{ Session::get('contact_success') }}

@endif
@csrf
{{ 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
{{ 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
{{ 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
{{ 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
@endsection