File: D:/HostingSpaces/SBogers10/topswtw.komma.pro/app/storage/views/03d3e721a2136073c633724dd7522361
<?php $__env->startSection('content'); ?> <div class="mobile-page login-page customer-login"> <h1><?php echo \Illuminate\Support\Facades\Lang::get('mobile.myTopsAccount'); ?></h1> <article class="text-block white login-block"> <h1><?php echo Lang::get('customer/login.title'); ?></h1> <?php echo Form::open(['url' => Shop::getLanguageService()->getCurrentLanguage() . '/customer/login']); ?> <span class="message error"><?php echo $errors->first('loginError'); ?></span> <div class="input-holder <?php echo $errors->first('email',' error'); ?>"> <?php echo $errors->first('email','<span class="message error">:message</span>'); ?> <?php echo Form::label('email', Lang::get('form.email') ); ?> <?php echo Form::email('email', ''); ?> </div> <div class="input-holder <?php echo $errors->first('password',' error'); ?>"> <?php echo $errors->first('password','<span class="message error">:message</span>'); ?> <?php echo Form::label('password', Lang::get('form.password') ); ?> <?php echo Form::password('password', ''); ?> </div> <div class="btn-holder"> <?php echo $__env->make('partials.buttons.input',[ 'input' => Form::submit(), 'text' => Lang::get('form.login') ], array_except(get_defined_vars(), array('__data', '__path')))->render(); ?> </div> <?php echo Form::close(); ?> <span class="forgot-password"> <a href="/<?php echo $shop->getPageService()->page('customerPasswordRecovery')->route; ?>"> <?php echo Lang::get('form.password_forgotten'); ?> </a> </span> </article> <article class="text-block white create-account"> <h1> <?php echo Lang::get('customer/login.choose_new.title'); ?></h1> <p><?php echo Lang::get('customer/login.choose_new.text'); ?></p> <div class="btn-holder"> <?php echo $__env->make('partials.buttons.default',[ 'route' => '/' . $shop->getPageService()->page('createCustomer')->route , 'text' => Lang::get('customer/login.choose_new.button') ], array_except(get_defined_vars(), array('__data', '__path')))->render(); ?> </div> </article> </div> <?php $__env->stopSection(); ?>
<?php echo $__env->make('mobile.master', array_except(get_defined_vars(), array('__data', '__path')))->render(); ?>