File: D:/HostingSpaces/SBogers10/signmania.komma.pro/app/views/forms/contact.blade.php
<section class="contact-form loaded-animation">
@if(isset($page->send) && $page->send)
<h1>@lang('mail.thanks')</h1>
<p class="mail-message">
@lang('mail.contact.thanksMessage')
</p>
@else
<h1>Let's work together</h1>
{{ Form::open(['url' => URL::to(route('contact.process'), [], true), 'id' => 'contactForm', 'class' => 'form']) }}
<div class="multiple-elements form-element">
<div class="first-name form-element ">
{{Form::label('first_name',trans('translations.first_name'))}}
<span class="error-message {{($errors->has('first_name')? 'active' :'')}}">{{$errors->first('first_name')}}</span>
{{ Form::text('first_name', Input::old('first_name'), ['placeholder'=>trans('translations.first_namePlaceholder'), 'id' => 'first_name']) }}
</div>
<div class="last-name form-element ">
{{Form::label('last_name',trans('translations.last_name'))}}
<span class="error-message {{($errors->has('last_name')? 'active' :'')}}">{{$errors->first('last_name')}}</span>
{{ Form::text('last_name', Input::old('last_name'), ['placeholder'=>trans('translations.last_namePlaceholder'), 'id' => 'last_name']) }}
</div>
</div>
<div class="multiple-elements form-element">
<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'), ['placeholder'=>trans('translations.emailPlaceholder'), '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'), ['placeholder'=> trans('translations.phonePlaceholder'), 'id' => 'phone']) }}
</div>
</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') ,['placeholder'=> trans('translations.extraMessagePlaceholder'), 'id'=>'formMessage', 'rows'=>'6']) }}
</div>
<div class="submit">
<p>@lang('translations.send')</p>
{{ Form::submit(trans('translations.send')) }}
</div>
{{ Form::close() }}
@endif
</section>