File: D:/HostingSpaces/SBogers33/broosensterck.nl/app/storage/views/587f350c4661ac77492e7ab797eb43cf
<div class="contact-form">
<?php if(!$page->send): ?>
<h2><?php echo KommaLang::get('contactForm'); ?></h2>
<?php echo Form::open(['url' => URL::to(route('contact.process'), [], true), 'id' => 'contactForm', 'class' => 'form']); ?>
<div class="first-name form-element ">
<?php echo Form::label('company',trans('translations.company')); ?>
<span class="error-message <?php echo ($errors->has('company')? 'active' :''); ?>"><?php echo $errors->first('company'); ?></span>
<?php echo Form::text('company', Input::old('company'), ['id' => 'company']); ?>
</div>
<div class="last-name form-element ">
<?php echo Form::label('companyContact',trans('translations.companyContact')); ?>
<span class="error-message <?php echo ($errors->has('companyContact')? 'active' :''); ?>"><?php echo $errors->first('companyContact'); ?></span>
<?php echo Form::text('companyContact', Input::old('companyContact'), ['id' => 'companyContact']); ?>
</div>
<div class="email form-element">
<?php echo Form::label('email',trans('translations.email')); ?>
<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']); ?>
</div>
<div class="phone form-element">
<?php echo Form::label('phone',trans('translations.phone')); ?>
<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']); ?>
</div>
<div class="extra_message form-element text-area">
<?php echo Form::label('formMessage',trans('translations.extraMessage')); ?>
<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']); ?>
</div>
<div class="submit">
<p class="button">
<?php echo \Illuminate\Support\Facades\Lang::get('translations.send'); ?>
<span class="arrow"><?php echo $__env->make('svg.arrow', array_except(get_defined_vars(), array('__data', '__path')))->render(); ?></span>
</p>
<?php echo Form::submit(trans('translations.send')); ?>
</div>
<?php echo Form::close(); ?>
<?php else: ?>
<h2><?php echo KommaLang::get('thanksContactFormTitle'); ?></h2>
<p><?php echo KommaLang::get('thanksContactFormText'); ?></p>
<?php endif; ?>
</div>