File: D:/HostingSpaces/SBogers10/franciscaansebeweging.komma.pro/app/views/forms/becomeFriend.blade.php
<div class="subscribe-form grid-row" id="scroll-form">
<h1>{{KommaLang::get('friendForm')}}</h1>
{{ Form::open(['url' => URL::to(route('becomeFriend.process'), [], true), 'id' => 'friendForm', 'class' => 'form']) }}
<div class="initials form-element ">
{{Form::label('initials',trans('translations.initials'))}}
<span class="error-message {{($errors->has('initials')? 'active' :'')}}">{{$errors->first('initials')}}</span>
{{ Form::text('initials', Input::old('initials'), ['id' => 'initials']) }}
</div>
<div class="name form-element multiple-elements">
<span class="error-message {{($errors->has('firstName')? 'active' :'')}}">{{$errors->first('firstName')}}</span>
<span class="error-message {{($errors->has('lastName')? 'active' :'')}}">{{$errors->first('lastName')}}</span>
<div class="first-name">
{{Form::label('first-name',trans('translations.first-name'))}}
{{ Form::text('firstName', Input::old('first-name'), ['id' => 'first-name']) }}
</div>
<div class="last-name">
{{Form::label('last-name',trans('translations.last-name'))}}
{{ Form::text('lastName', Input::old('last-name'), ['id' => 'last-name']) }}
</div>
</div>
<div class="mail-number form-element multiple-elements">
<span class="error-message {{($errors->has('email')? 'active' :'')}}">{{$errors->first('email')}}</span>
<span class="error-message {{($errors->has('phone')? 'active' :'')}}">{{$errors->first('phone')}}</span>
<div class="email">
{{Form::label('email',trans('translations.email'))}}
{{ Form::email('email', Input::old('email'), ['id' => 'email']) }}
</div>
<div class="phone">
{{Form::label('phone',trans('translations.phone'))}}
{{ Form::text('phone', Input::old('phone'), ['id' => 'phone']) }}
</div>
</div>
<div class="account-number form-element">
{{Form::label('account-number',trans('translations.account-number'))}}
<span class="error-message {{($errors->has('accountNumber')? 'active' :'')}}">{{$errors->first('accountNumber')}}</span>
{{ Form::text('accountNumber', Input::old('accountNumber'), ['id' => 'account-number']) }}
</div>
<div class="submit">
@lang('translations.send')
{{ Form::submit(trans('translations.send')) }}
</div>
{{ Form::close() }}
</div>