File: D:/HostingSpaces/SBogers10/topswtw.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',[
'deliveryTime' => Lang::get('checkout/thanks.del_time.' . $order->delivery_time)
])
}}
</li>
</ul>
<p>{{ Lang::get('checkout/thanks.message.greetings') }}</p>
<p>{{ Lang::get('tops.name_without_bv') }}</p>
@else
<div class="description column">
<p>{{ Lang::get('checkout/thanks.no_order_found') }}</p>
</div>
@endif
</article>
@if(\App::getLocale() != 'en')
<div class="youtube-player-wrapper">
<div class="video-wrapper">
<div class="youtube-player"
data-youtube-link="@lang('checkout/thanks.videoId')"
id="ytplayer-home"></div>
</div>
</div>
@endif
@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
@section('google-data-layers')
@include('google.purchase-event-datalayer')
@stop