HEX
Server: Microsoft-IIS/8.5
System: Windows NT YDAWBH120 6.3 build 9600 (Windows Server 2012 R2 Standard Edition) AMD64
User: tentjecom_web (0)
PHP: 7.4.14
Disabled: NONE
Upload Files
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() }}