@extends($_layout.'single') @section('title', $page_title) @include($_lib.'register-meta') @section('content')

{{$page_title}}

@if ($cart && $cart->details && count($cart->details))
@php $form = $cart->getForm([ 'className' => 'form-control' ]); $info = $form->get('billing_name', 'billing_email', 'billing_phone_number', 'billing_region_id', 'billing_district_id', 'billing_ward_id', 'billing_address'); $shipping = $form->get('shipping_name', 'shipping_email', 'shipping_phone_number', 'shipping_region_id', 'shipping_district_id', 'shipping_ward_id', 'shipping_address'); @endphp
@csrf

Thông tin mua hàng

@foreach ($info as $input)
{!! $input !!}
@if ($input->error)
{{$input->error}}
@endif
@endforeach @if (!$helper->isLogin()) @endif
{!! $checkbox = $form->get('ship_to_different_address')->addClass(parse_classname('ship-to-different-address')) !!}
@foreach ($shipping as $input)
{!! $input !!}
@if ($input->error)
{{$input->error}}
@endif
@endforeach
{{--

Addition information

--}}
{!! $input !!}
Khách hàng có thể nhập mã giảm giá nếu có

Đơn hàng

Sản phẩm Thành tiền

@foreach ($cart->details as $item) @endforeach
{{$item->product_name}}
@if ($item->attributes && count($item->attributes))
@foreach ($item->attributes as $attr)
{{$attr->label??$attr->name}}: {{$attr->text}}
@endforeach
@endif
Số lượng: {{$item->quantity}}
{{$item->getTotalFormat()}}

Tạm tính {{$helper->getCurrencyFormat($cart->sub_total)}}

{{--

Phí giao hàng {{$helper->getCurrencyFormat($cart->shipping_fee)}}

Thuế VAT {{$helper->getCurrencyFormat($cart->tax)}}

--}}

Tổng thành tiền {{$helper->getCurrencyFormat($cart->total_money)}}

@include($_lib.'payments.methods')
@else

Không có sản phẩm nào trong giỏ hàng

@endif
@endsection