File: D:/HostingSpaces/EUmans/umansradepo.be/app/views/forms/contact.blade.php
<div class="form-contact">
<h1>{{$page->content->contact_intro->translation->name}}</h1>
<p>{{$page->content->contact_intro->translation->description}}</p>
{{ Form::open(['url' => URL::to(route('contact.process'), [], true), 'id' => 'contactForm', 'class' => 'form']) }}
<div class="name form-element multiple-elements">
<div class="first_name">
<span class="error {{($errors->has('first_name')? 'active' :'')}}">{{$errors->first('first_name')}}</span>
{{Form::label('first_name',trans('translations.first_name'))}}
{{ Form::text('first_name', Input::old('first_name'), ['id' => 'first_name']) }}
</div>
<div class="last_name">
<span class="error {{($errors->has('last_name')? 'active' :'')}}">{{$errors->first('last_name')}}</span>
{{Form::label('last_name',trans('translations.last_name'))}}
{{ Form::text('last_name', Input::old('last_name'), ['id' => 'last_name']) }}
</div>
</div>
<div class="phone form-element">
<span class="error {{($errors->has('phone')? 'active' :'')}}">{{$errors->first('phone')}}</span>
{{Form::label('phone',trans('translations.phone'))}}
{{ Form::text('phone', Input::old('phone'), ['id' => 'phone']) }}
</div>
<div class="email form-element">
<span class="error {{($errors->has('email')? 'active' :'')}}">{{$errors->first('email')}}</span>
{{Form::label('email',trans('translations.email'))}}
{{ Form::email('email', Input::old('email'), ['id' => 'email']) }}
</div>
<div class="extra_message form-element text-area">
<span class="error {{($errors->has('formMessage')? 'active' :'')}}">{{$errors->first('formMessage')}}</span>
{{Form::label('formMessage',trans('translations.extraMessage'))}}
{{ Form::textarea('formMessage', Input::old('formMessage') ,['id'=>'formMessage', 'rows'=>'6', 'data-autoresize'=>'']) }}
</div>
<div class="submit-button">
@lang('offer.contact-submit')<span></span>
{{ Form::submit(trans('translations.send')) }}
</div>
{{ Form::close() }}
<div class="thanks inactive">
<h2>@lang('mail.thanks')</h2>
<p>
@lang('mail.contact.thanksMessage')
</p>
</div>
</div>