@csrf
@if ($service->branch->settings->orders->is_login_active || $service->branch->settings->orders->is_otp_active || $service->settings->orders->show_phone_input || $service->settings->orders->show_name_input || $service->settings->orders->show_email_input)

@lang('global.personal_information')

@endif @if ($service->settings->orders->show_name_input)
@endif @if ($service->settings->orders->show_email_input)
@endif @if ($service->settings->orders->show_phone_input || $service->branch->settings->orders->is_login_active || $service->branch->settings->orders->is_otp_active)
@if ($user) @else @endif
@endif @if (!$room && $service->settings->orders->show_room_input)
@endif

@lang('global.order_details')

@foreach (Cart::get() as $item) @endforeach
@lang('global.category') @lang('global.quantity') @lang('global.unit_price') @lang('global.total_price')
{{ $item['title'][$locale] }} {{ $item['quantity'] }} @if ($item['price'] == 0) @lang('global.without_fees') @else {{ $item['price'] }} @endif @if ($item['price'] == 0) @lang('global.without_fees') @else {{ number_format($item['price'] * $item['quantity'], 2) }} @endif

@lang('global.add_your_notes_here')

@lang('global.payment_information')

@if ($service->settings->orders->tips->is_active && (count($service->settings->orders->tips->data ?? []) || $service->settings->orders->tips->show_other_amount_input))

@lang('global.tips')

@if (count($service->settings->orders->tips->data ?? []))
@foreach ($service->settings->orders->tips->data ?? [] as $tip)
{{ $tip->amount }}
@endforeach
@endif @if ($service->settings->orders->tips->show_other_amount_input)
@endif
@endif

@lang('global.order_summary')

@if (Cart::total_price() != 0) @if ($service->settings->orders->tips->is_active && (count($service->settings->orders->tips->data ?? []) || $service->settings->orders->tips->show_other_amount_input)) @endif @endif @if (Cart::total_price() == 0) @else @endif
@lang('global.total') {{ Cart::total_price(true) }}
@lang('global.discount') 0.00
@lang('global.tip') 0.00
@lang('global.total_amount') @lang('global.without_fees') {{ Cart::total_price(true) }}
@if (Cart::total_price() != 0)

@lang('global.all_prices_include_vat')

@endif