@extends('layouts.app') @section('content')
@foreach($cart as $product) {{--@include('webshop.includes.cart.product_row', ['removable' => false])--}} {{-- TODO: mehet include-dal is, vagy ha egyedit akarunk --}} @endforeach
{{--@include('webshop.includes.cart.product_row_summary', ['buttons' => false])--}}

{{ __('Számlázási adatok') }}

{{ __('Szerkesztés') }}
@if($billing_information['customer_is_company'])
{{ __('Cég neve') }}: {{ $billing_information['customer_company_name'] }}
{{ __('Adószám') }}: {{ $billing_information['customer_tax_number'] }}
{{ __('Kapcsolattartó') }}: {{ $billing_information['customer_name'] }}
@else
{{ __('Név') }}: {{ $billing_information['customer_name'] }}
@endif
{{ __('Cím') }}: {{ $billing_information['customer_postal_code'] }} {{ $billing_information['customer_city'] }}, {{ $billing_information['customer_address'] }}
{{ __('Telefon') }}: {{ $billing_information['customer_phone'] }}
{{ __('E-mail') }}: {{ $billing_information['customer_email'] }}

{{ __('Fizetés módja') }}

{{ __('Szerkesztés') }}
@if($payment_type == 'Bankkártya')  SimplePay vásárlói tájékoztató @endif

{{ __('Rendelés véglegesítése') }}

@csrf
@endsection