File: D:/HostingSpaces/SBogers10/topswtw.komma.pro/app/storage/views/d574fc973156dfbb6eddc677e5e9fb47
<?php $__env->startSection('content'); ?> <div class="login-page mobile-page"> <section class="continue-without login-panel"> <h2><?php echo Lang::get('checkout/login.choose_new.title'); ?></h2> <p><?php echo Lang::get('mobile.continueWithoutDescription'); ?></p> <div class="btn-holder"> <?php echo $__env->make('partials.buttons.default',[ 'route' => '/' . $shop->getPageService()->page('checkoutData')->route, 'text' => Lang::get('checkout/login.choose_new.button') ], array_except(get_defined_vars(), array('__data', '__path')))->render(); ?> </div> </section> <section class="continue-login login-panel"> <h2><?php echo Lang::get('mobile.continueLoginTitle'); ?></h2> <?php echo Lang::get('checkout/login.choose_login.description'); ?> <?php echo Form::open(['url' => Shop::getLanguageService()->getCurrentLanguage() . '/customer/login']); ?> <?php echo Form::hidden('targetPageSlug', 'checkoutData'); ?> <?php echo $errors->first('wrongPassword','<span class="message error">:message</span>'); ?> <div class="input-holder <?php echo $errors->first('email',' error'); ?>"> <?php echo Form::label('email', Lang::get('mobile.email') ); ?> <?php echo Form::email('email', ''); ?> <?php echo $errors->first('email','<span class="message error">:message</span>'); ?> </div> <div class="input-holder <?php echo $errors->first('password',' error'); ?>"> <?php echo Form::label('password', Lang::get('form.password') ); ?> <?php echo Form::password('password', ''); ?> <?php echo $errors->first('password','<span class="message error">:message</span>'); ?> </div> <span class="forgot-password"> <?php echo HTML::link($shop->getPageService()->page('customerPasswordRecovery')->route.'?origin='.str_rot13(\Request::path()), Lang::get('form.password_forgotten')); ?> </span> <div class="btn-holder"> <?php echo $__env->make('partials.buttons.input',[ 'input' => Form::submit(), 'text' => Lang::get('mobile.loginContinue') ], array_except(get_defined_vars(), array('__data', '__path')))->render(); ?> </div> <?php echo Form::close(); ?> </section> </div> <?php $__env->stopSection(); ?>
<?php echo $__env->make('mobile.master', ['checkout' => true], array_except(get_defined_vars(), array('__data', '__path')))->render(); ?>