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/customers/login.blade.php
@extends('mobile.master')

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

        <h1>@lang('mobile.myTopsAccount')</h1>

        <article class="text-block white login-block">
            <h1>{{ Lang::get('customer/login.title') }}</h1>
            {{ Form::open(['url' => Shop::getLanguageService()->getCurrentLanguage() . '/customer/login']); }}

            <span class="message error">{{ $errors->first('loginError') }}</span>

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

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

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

            {{ Form::close(); }}

            <span class="forgot-password">
                <a href="/{{ $shop->getPageService()->page('customerPasswordRecovery')->route }}">
                    {{ Lang::get('form.password_forgotten') }}
                </a>
            </span>

        </article>

        <article class="text-block white create-account">
            <h1> {{ Lang::get('customer/login.choose_new.title') }}</h1>
            <p>{{ Lang::get('customer/login.choose_new.text') }}</p>
            <div class="btn-holder">
                @include('partials.buttons.default',[
                'route' => '/' . $shop->getPageService()->page('createCustomer')->route ,
                'text' => Lang::get('customer/login.choose_new.button')
            ])
            </div>
        </article>

    </div>
@stop