File: D:/HostingSpaces/SBogers10/topswtw.komma.pro/app/views/checkout/partials/createAccount.blade.php
<span class="title">{{ Lang::get('checkout/thanks.create_account.title') }}</span>
{{ Lang::get('checkout/thanks.create_account.description') }}
{{ Form::open(['url' => Shop::getPageService()->page('quickCreateAccount')->route]) }}
{{ Form::hidden('email', $order->invoice_email) }}
{{-- Form::hidden('order_id', $order->id) --}} {{-- unsafe? --}}
{{ Form::hidden('order_token', $order->order_token) }}
<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="input-holder {{ $errors->first('password_confirmation','error' )}}">
{{ Form::label('password_confirmation', Lang::get('form.password_confirmation')) }}
{{ Form::password('password_confirmation') }}
{{ $errors->first('password_confirmation', '<span class="error">:message</span>') }}
</div>
<div class="btn-holder">
@include('partials.buttons.input',[
'input' => Form::submit(),
'text' => Lang::get('checkout/thanks.create_account.button')
])
</div>
{{ Form::close() }}