File: D:/HostingSpaces/SBogers10/topswtw.komma.pro/app/views/checkout/partials/linkAccount.blade.php
<span class="title">{{ Lang::get('checkout/thanks.link_account.title') }}</span>
{{ Lang::get('checkout/thanks.link_account.description') }}
{{ Form::open(['url' => Shop::getPageService()->page('linkAccount')->route]) }}
{{ Form::hidden('order_id', $order->id) }}
<div class="input-holder {{ $errors->first('email',' error') }}">
{{ Form::label('email', Lang::get('form.email')) }}
{{ Form::text('email', $order->invoice_email) }}
{{ $errors->first('email', '<span class="error">:message</span>') }}
</div>
<div class="input-holder {{ $errors->first('password',' error') }}">
{{ Form::label('password', Lang::get('form.password')) }}
@if(isset($checkout))
{{ Form::password('password', $checkout->shipping()->get('password')) }}
@else
{{ Form::password('password') }}
@endif
{{ $errors->first('password', '<span class="error">:message</span>') }}
</div>
<div class="btn-holder">
@include('partials.buttons.input',[
'input' => Form::submit(),
'text' => Lang::get('checkout/thanks.link_account.button')
])
</div>
{{ Form::close() }}