File: D:/HostingSpaces/SBogers10/topswtw.komma.pro/app/views/checkout/login.blade.php
@extends('layouts.master')
@section('background')
<div class="bg-50"></div>
@stop
@section('sidebar')
@include('partials.sidebar',['customerService' => ''])
@stop
@section('brandNavigationBar')
@include('partials.brandNavigationBar')
@stop
@section('content')
<div class="content-container column fluid-100">
<!-- Breadcrumb -->
@include('partials.breadcrumb')
<!-- Title -->
<h1 class="page-title">{{ Lang::get('checkout/checkout.title') }}</h1>
<!-- Filter bar -->
<div class="top-bar content-block column fluid-100">
<div class="product-filter column fluid-66">
<a href="/{{ $shop->getPageService()->page('cart')->route }}" class="back-btn">
{{ Lang::get('checkout/login.back_to_cart') }}
</a>
</div>
</div>
<article class="checkout-login-block content-block column fluid-100">
<header>
{{ Lang::get('checkout/login.panel_title') }}
</header>
<div class="column fluid-50">
<span class="title">{{ Lang::get('checkout/login.choose_new.title') }}</span>
{{ Lang::get('checkout/login.choose_new.description') }}
@include('partials.buttons.default',[
'route' => '/' . $shop->getPageService()->page('checkoutData')->route,
'text' => Lang::get('checkout/login.choose_new.button')
])
</div>
<div class="column fluid-50">
<span class="title">{{ Lang::get('checkout/login.choose_login.title') }}</span>
{{ 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('form.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>
<div class="btn-holder">
@include('partials.buttons.input',[
'input' => Form::submit(),
'text' => Lang::get('form.login')
])
</div>
{{ Form::close() }}
<span class="forgot-password">
{{HTML::link($shop->getPageService()->page('customerPasswordRecovery')->route.'?origin='.str_rot13(\Request::path()), Lang::get('form.password_forgotten'))}}
</span>
</div>
<div class="center-arrow"></div>
</article>
</div>
@stop