File: D:/HostingSpaces/SBogers10/topswtwmobile.komma.pro/app/views/checkout/payment/failed.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="text-block content-block column fluid-100">
<h2>{{ $entity->name }}</h2>
<div class="description column">
{{ $entity->description }}
<a href="/{{ $shop->getPageService()->page('pendingPayment')->route }}?token={{ $token }}" class="btn">{{ Lang::get('payments/failed.button') }}</a>
</div>
<div class="description column last">
{{ $entity->description_two }}
@if( ! empty($entity->call_to_action))
@include('partials.callToActions.' . $entity->call_to_action)
@endif
</div>
</article>
</div>
@stop