File: D:/HostingSpaces/BVerhoeven/verhoevendak.nl/app/storage/views/22ea75cfdca78e8539771af9f070682d
<div class="offerte-form">
<?php if(isset($page->send) && $page->send): ?>
<h2><?php echo \Illuminate\Support\Facades\Lang::get('mail.thanks'); ?></h2>
<p>
<?php echo \Illuminate\Support\Facades\Lang::get('mail.contact.thanksMessage'); ?>
</p>
<?php else: ?>
<?php if(isset($page->content->translation->description['contact_form'])): ?>
<h2><?php echo $page->content->translation->description['contact_form']->typeName; ?></h2>
<?php echo $page->content->translation->description['contact_form']->description; ?>
<?php endif; ?>
<?php echo Form::open(['url' => URL::to(route('contact.process'), [], true), 'id' => 'contactForm', 'class' => 'form']); ?>
<div class="first_name form-element pull-left">
<span class="error-message <?php echo ($errors->has('first_name')? 'active' :''); ?>"><?php echo $errors->first('first_name'); ?></span>
<?php echo Form::text('first_name', Input::old('first_name'), ['id' => 'first_name']); ?>
<?php echo Form::label('first_name',trans('translations.first_name')); ?>
</div>
<div class="last_name form-element pull-right">
<span class="error-message <?php echo ($errors->has('last_name')? 'active' :''); ?>"><?php echo $errors->first('last_name'); ?></span>
<?php echo Form::text('last_name', Input::old('last_name'), ['id' => 'last_name']); ?>
<?php echo Form::label('last_name',trans('translations.last_name')); ?>
</div>
<div class="email form-element pull-left">
<span class="error-message <?php echo ($errors->has('email')? 'active' :''); ?>"><?php echo $errors->first('email'); ?></span>
<?php echo Form::email('email', Input::old('email'), ['id' => 'email']); ?>
<?php echo Form::label('email',trans('translations.email')); ?>
</div>
<div class="phone form-element pull-right">
<span class="error-message <?php echo ($errors->has('phone')? 'active' :''); ?>"><?php echo $errors->first('phone'); ?></span>
<?php echo Form::text('phone', Input::old('phone'), ['id' => 'phone']); ?>
<?php echo Form::label('phone',trans('translations.phone')); ?>
</div>
<div class="extra_message form-element text-area">
<span class="error-message <?php echo ($errors->has('formMessage')? 'active' :''); ?>"><?php echo $errors->first('formMessage'); ?></span>
<?php echo Form::textarea('formMessage', Input::old('formMessage') ,['id'=>'formMessage', 'rows'=>'6']); ?>
<?php echo Form::label('formMessage',trans('translations.extraMessage')); ?>
</div>
<div class="submit">
<p><?php echo \Illuminate\Support\Facades\Lang::get('translations.send'); ?></p>
<?php echo Form::submit(trans('translations.send'), ['class' => 'button blue arrow']); ?>
</div>
<?php echo Form::close(); ?>
<?php endif; ?>
</div>