File: D:/HostingSpaces/SBogers10/topswtwmobile.komma.pro/app/views/mobile/checkout/thanks.blade.php
@extends('mobile.master')
@section('content')
<div class="mobile-page thanks-page">
<article class="text-block">
@include('partials.messages')
@if($order)
<span class="title">{{ $order->getSalutation() }},</span>
<span class="thank-you">
{{ Lang::get('mobile.thanksOrder') }}
</span>
{{ Lang::get('checkout/thanks.message.message') }}
<ul>
<li>{{ Lang::get('checkout/thanks.message.details.orderNumber',['orderNumber' => $order->order_number ]) }}</li>
<li>{{ Lang::get('checkout/thanks.message.details.email',['email' => $order->invoice_email ]) }}</li>
<li>{{ Lang::get('checkout/thanks.message.details.shipping') }}</li>
</ul>
<p>{{ Lang::get('checkout/thanks.message.greetings') }}</p>
<p>{{ Lang::get('tops.name') }}</p>
@else
<div class="description column">
<p>{{ Lang::get('checkout/thanks.no_order_found') }}</p>
</div>
@endif
</article>
@if($order && ! $customerService->isLoggedIn())
<div class="subscribe-block">
@if($customerService->checkEmailAddress($order->invoice_email))
@include('checkout.partials.linkAccount')
@else
@include('checkout.partials.createAccount')
@endif
</div>
@endif
</div>
@stop