@extends('front.layouts.master') @section('content') @if(count($cart['products']) > 0) {{ __('front.cart') }} 01 {{ __('front.offer_cart') }} {{ __('front.manage_items_list') }} 02 {{ __('front.confirmation') }} {{ __('front.review_and_submit_offer') }} {{ __('front.product') }} {{ __('front.quantity') }} @foreach ($cart['products'] as $product) {{ $product->getTranslatedAttribute('title') }} {{ __('front.category') }}: {{ $product->category->getTranslatedAttribute('title') }} {{ __('front.code') }}: {{ $product->code }} - + @endforeach @csrf {{ __('front.preferences') }} {{ __('front.notes') }} {{ __('front.offer_currency') }} {{ __('front.select_boxes') }} @foreach ($currencies as $currency) {{ $currency->code }} @endforeach @if ($errors->has('currency_id')) {{ $errors->first('currency_id') }} @endif {{ __('front.communication_preference') }} {{ __('front.via_email') }} {{ __('front.via_phone') }} {{ __('front.request_offer') }} @else {{ __('front.your_cart_empty') }} @endif @endsection @push('javascript') @endpush