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/topswtwmobile.komma.pro/app/views/mobile/checkout/login.blade.php
@extends('mobile.master', ['checkout' => true])

@section('content')
    <div class="login-page mobile-page">

        <section class="continue-without login-panel">

            <h2>{{ Lang::get('checkout/login.choose_new.title') }}</h2>

            <p>{{ Lang::get('mobile.continueWithoutDescription') }}</p>

            <div class="btn-holder">
                @include('partials.buttons.default',[
                    'route' => '/' . $shop->getPageService()->page('checkoutData')->route,
                    'text' => Lang::get('checkout/login.choose_new.button')
                ])
            </div>
        </section>

        <section class="continue-login login-panel">

            <h2>{{ Lang::get('mobile.continueLoginTitle') }}</h2>

            {{ Lang::get('checkout/login.choose_login.description') }}

            {{ Form::open(['url' => Shop::getLanguageService()->getCurrentLanguage() . '/customer/login']); }}

            {{ Form::hidden('targetPageSlug', 'checkoutData') }}

            {{$errors->first('wrongPassword','<span class="message error">:message</span>') }}
            <div class="input-holder {{$errors->first('email',' error');}}">
                {{ Form::label('email', Lang::get('mobile.email') ); }}
                {{ Form::email('email', '')}}
                {{ $errors->first('email','<span class="message error">:message</span>'); }}
            </div>

            <div class="input-holder {{$errors->first('password',' error');}}">
                {{ Form::label('password', Lang::get('form.password') ); }}
                {{ Form::password('password', '')}}
                {{ $errors->first('password','<span class="message error">:message</span>'); }}
            </div>


            <span class="forgot-password">
                {{HTML::link($shop->getPageService()->page('customerPasswordRecovery')->route.'?origin='.str_rot13(\Request::path()), Lang::get('form.password_forgotten'))}}
            </span>

            <div class="btn-holder">
                @include('partials.buttons.input',[
                    'input' =>  Form::submit(),
                    'text' => Lang::get('mobile.loginContinue')
                ])
            </div>

            {{ Form::close(); }}


        </section>

    </div>
@stop