File: D:/HostingSpaces/SBogers10/umans.komma.pro/app/views/layouts/partials/contactForm.blade.php
<div class="form-contact">
<h1>{{$page->content->contact_intro->translation->name}}</h1>
<p>{{$page->content->contact_intro->translation->description}}</p>
<h4 class="thank-you">@lang('translations.thank-you-form')</h4>
<form action="{{ URL::route('contact.process') }}" method="post" id="contactForm">
<input type="hidden" name="formname" id="hiddenRow" value="contact-form">
<div class="name-row">
<div><label for="first-name">@lang('offer.first-name')*</label><input class="required" id="first-name"
type="text" name="firstname"></div>
<div><label for="sur-name">@lang('offer.sur-name')*</label><input class="required" id="sur-name" type="text"
name="surname"></div>
</div>
<label for="email">@lang('offer.email')*</label><input id="email" type="email" name="email">
<label for="phone">@lang('offer.phone')</label><input id="phone" type="text" name="phone">
<label for="message">@lang('offer.message')*</label>
<textarea class="required" id="message" name="formMessage"></textarea>
<div class="submit-button">@lang('offer.contact-submit')<span></span></div>
</form>
</div>