@extends('layout') @section('page_title', 'Contact') @section('content')

Contactez-nous

@csrf
{{ Form::select('subject',['general' => __('firstcop.contact.subject.general'), 'missing_declination' => __('firstcop.contact.subject.missing_declination'), 'other' => __('firstcop.contact.subject.other')], request()->get('subject',old('subject')), ['class' => 'fc-input' . ($errors->has('email') ? ' is-invalid' : ''), 'required'=> true]) }} @if ($errors->has('subject')) {{ $errors->first('subject') }} @endif
{{ Form::text('name', old('name'), ['class' => 'fc-input' . ($errors->has('name') ? ' is-invalid' : ''), 'required'=> true,'placeholder' => __('Name')]) }} @if ($errors->has('name')) {{ $errors->first('name') }} @endif
{{ Form::text('email', old('email'), ['class' => 'fc-input' . ($errors->has('email') ? ' is-invalid' : ''), 'required'=> true,'placeholder' => __('Email')]) }} @if ($errors->has('email')) {{ $errors->first('email') }} @endif
{{ Form::textarea('message', request()->get('message', old('message')) , ['class' => 'fc-input' . ($errors->has('email') ? ' is-invalid' : ''), 'required'=> true,'placeholder' => __('Message')]) }} @if ($errors->has('message')) {{ $errors->first('message') }} @endif
@endsection