@if (Cart::instance('cart')->count() > 0)
@if (session()->has('success_msg'))
{{ session('success_msg') }}
@endif
@if (session()->has('error_msg'))
{{ session('error_msg') }}
@endif
@if (isset($errors) && count($errors->all()) > 0)
@foreach ($errors->all() as $error)
{{ $error }}
@endforeach
@endif
@if (count($crossSellProducts) > 0)
{{ __('Customers who bought this item also bought') }}
@foreach ($crossSellProducts as $crossSellProduct)
{!! Theme::partial('product-item-grid', ['product' => $crossSellProduct]) !!}
@endforeach
@endif
@else
{{ __('Your cart is empty!') }}
@endif