File: D:/HostingSpaces/SBogers101/cranendonckactief.nl/app/views/forms/becomeMember.blade.php
<div class="contact-form">
@if(!$page->send)
<h2>{{KommaLang::get('becomeMemberForm')}}</h2>
{{ Form::open(['url' => URL::to(route('subscribe.process'), [], true), 'id' => 'subscribeForm', 'class' => 'form']) }}
<div class="supportType form-element radioboxes">
<p class="label-replacement">
@lang('translations.supportType')
</p>
<label>
{{ Form::radio('supportType', 'donation', true) }}
<span>@lang('translations.supportDonation')</span>
</label>
<label>
{{ Form::radio('supportType', 'member') }}
<span>@lang('translations.supportMember')</span>
</label>
</div>
<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']) }}
</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']) }}
</div>
<div class="address form-element">
{{Form::label('address',trans('translations.address'))}}
<span class="error-message {{($errors->has('address')? 'active' :'')}}">{{$errors->first('address')}}</span>
{{ Form::text('address', Input::old('address'), ['id' => 'address']) }}
</div>
<div class="city form-element">
{{Form::label('city',trans('translations.city'))}}
<span class="error-message {{($errors->has('city')? 'active' :'')}}">{{$errors->first('city')}}</span>
{{ Form::text('city', Input::old('city'), ['id' => 'city']) }}
</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']) }}
</div>
<div class="mobile form-element">
{{Form::label('mobile',trans('translations.mobile'))}}
<span class="error-message {{($errors->has('mobile')? 'active' :'')}}">{{$errors->first('mobile')}}</span>
{{ Form::text('mobile', Input::old('mobile'), ['id' => 'mobile']) }}
</div>
<div class="submit">
<p class="button">
@lang('translations.send')
<span class="arrow">@include('svg.arrow')</span>
</p>
{{ Form::submit(trans('translations.send')) }}
</div>
{{ Form::close() }}
@else
<h2>{{ KommaLang::get('thanksContactFormTitle') }}</h2>
<p>{{ KommaLang::get('thanksContactFormText') }}</p>
@endif
</div>