File: D:/HostingSpaces/SBogers109/excellentexecutivesearch.nl/app/views/forms/offer.blade.php
<div class="contact-form">
@if(!$page->send)
<h2>{{KommaLang::get('offerForm')}}</h2>
{{ Form::open(['url' => URL::to(route('smallOffer.process'), [], true), 'id' => 'contactForm', 'class' => 'form']) }}
<div class="first-name form-element ">
{{Form::label('firstname',trans('translations.first-name'))}}
<span class="error-message {{($errors->has('firstname')? 'active' :'')}}">{{$errors->first('firstname')}}</span>
{{ Form::text('firstname', Input::old('firstname'), ['id' => 'firstname']) }}
</div>
<div class="last-name form-element ">
{{Form::label('lastname',trans('translations.last-name'))}}
<span class="error-message {{($errors->has('lastname')? 'active' :'')}}">{{$errors->first('lastname')}}</span>
{{ Form::text('lastname', Input::old('lastname'), ['id' => 'lastname']) }}
</div>
<div class="email form-element">
{{Form::label('email',trans('translations.email'))}}
<span class="error-message {{($errors->has('email')? 'active' :'')}}">{{$errors->first('email')}}</span>
{{ Form::email('email', Input::old('email'), ['id' => 'email']) }}
</div>
<div class="phone form-element">
{{Form::label('phone',trans('translations.phone'))}}
<span class="error-message {{($errors->has('phone')? 'active' :'')}}">{{$errors->first('phone')}}</span>
{{ Form::text('phone', Input::old('phone'), ['id' => 'phone']) }}
</div>
<div class="extra_message form-element text-area">
{{Form::label('formMessage',trans('translations.extraMessage'))}}
<span class="error-message {{($errors->has('formMessage')? 'active' :'')}}">{{$errors->first('formMessage')}}</span>
{{ Form::textarea('formMessage', Input::old('formMessage') ,['id'=>'formMessage', 'rows'=>'6']) }}
</div>
<div class="submit">
<p class="button">
@lang('translations.send')
<span class="arrow">@include('svg.arrow')</span>
</p>
{{ Form::submit(trans('translations.send')) }}
</div>
{{ Form::close() }}
@else
<h2>{{ KommaLang::get('thanksContactFormTitle') }}</h2>
<p>{{ KommaLang::get('thanksContactFormText') }}</p>
@endif
</div>