@extends('master')
@section('seo_title', __('messages.SHOPPING_CART'))
@section('seo_keywords', '')
@section('seo_description', '')
@section('content')
{{-- @include('layout.breadcrumbs', ['page_title' => __('messages.SHOPPING_CART')]) --}}
@if (!isset($error) && empty($error))
@include('cart.cart', [
'cart' => $cart
])
@else
@include('cart.cart-empty')
@endif
@endsection