File: D:/HostingSpaces/SBogers110/franciscaansebeweging.nl/app/views/forms/subscribeTravelRow.blade.php
<section class="subscribe-travel-row" id="subscribe">
<div class="grid-row">
<div class="form-placeholder grid-col">
<h3>@lang('translations.subscribeByForm')</h3>
{{ Form::open(['url' => URL::to(route('travelSubscribe.process'), [], true), 'id' => 'travelForm', 'class' => 'form']) }}
<div class="name form-element ">
{{Form::label('name',trans('translations.name'))}}
<span class="error-message {{($errors->has('name')? 'active' :'')}}">{{$errors->first('name')}}</span>
{{ Form::text('name', Input::old('name'), ['id' => 'name', 'placeholder' => trans('translations.namePlaceholder')]) }}
</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', 'placeholder' => trans('translations.phonePlaceholder')]) }}
</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', 'placeholder' => trans('translations.emailPlaceholder')]) }}
</div>
<div class="form-element">
<div class="g-recaptcha" data-sitekey="6LfQlkQrAAAAADd8iixJpdoaa3oLC2-MixV1ID-p"></div>
<span class="error-message {{($errors->has('recaptcha')? 'active' :'')}}">{{$errors->first('recaptcha')}}</span>
</div>
{{ Form::hidden('travel', $travel->translation->name ,['id'=>'travel']) }}
{{ Form::hidden('startDate', $travel->getStartDate()->format('d-m-Y') ,['id'=>'startDate']) }}
{{ Form::hidden('endDate', $travel->getEndDate()->format('d-m-Y') ,['id'=>'endDate']) }}
{{ Form::hidden('travelId', $travel->id ,['id'=>'travelId']) }}
<div class="submit">
@lang('translations.subscribe')
{{ Form::submit(trans('translations.subscribe')) }}
</div>
{{ Form::close() }}
</div>
<div class="question-placeholder grid-col">
<h5>@lang('translations.questionsOrTips')</h5>
<div class="person-row">
<figure>
<img src="/img/persons/{{ \Config::get('business.travelContactPerson.slug') }}.jpg" alt="contact person">
</figure>
<p>{{ \Config::get('business.travelContactPerson.name') }}</p>
</div>
<a href="tel:{{ \Config::get('business.phone_call') }}">{{ \Config::get('business.phone_display') }}</a>
<a href="mailto:{{ \Config::get('business.email') }}">{{ \Config::get('business.email') }}</a>
</div>
</div>
</section>