File: D:/HostingSpaces/SBogers10/topswtwmobile.komma.pro/app/views/checkout/payment/waiting.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">{{ $entity->name }}</h1>
<article class="thanks-block content-block column fluid-100">
@if($order)
<div class="column {{ $customerService->isLoggedIn() ? 'fluid-100' : 'fluid-50' }}">
<span class="title">{{ $entity->name }},</span>
{{ $entity->description }}
<a href="/{{ $shop->getPageService()->page('customer')->route }}?token={{ $token }}"
class="btn">{{ Lang::get('payments/waiting.button') }}</a>
</div>
@if(! $customerService->isLoggedIn())
<div class="column fluid-50">
@if($customerService->checkEmailAddress($order->invoice_email))
@include('checkout.partials.linkAccount')
@else
@include('checkout.partials.createAccount')
@endif
</div>
<!--<div class="center-arrow"></div>-->
@endif
@else
<div class="description column">
<p>{{ Lang::get('checkout/thanks.no_order_found') }}</p>
</div>
@endif
</article>
</div>
@stop