@extends('frontend.layout') @section('title', 'Inve Security - ' . t('custom_package_page_title')) @section('description', t('custom_package_page_description')) @section('content') @if(session('success'))

{{ t('success') ?? 'Success!' }}

{{ session('success') }}

@endif
{{ t('countries') ?? 'COUNTRIES' }}

{{ t('choose_country') ?? 'Choose Country' }}

{{ t('choose_country_subtext') ?? 'Select a country to view available security services' }}

{{ t('your_package') }}

{{ t('your_package_subtext') }}

@if(count($selectedServices) > 0)
@foreach($selectedServices as $service)
{{ $service['name'] }}

{{ number_format($service['price'], 2) }} SR

@csrf
@endforeach
@else

{{ t('no_service_selected') }}

{{ t('add_service_prompt') }}

@endif
@if(count($selectedServices) > 0)
{{ t('subtotal') }} {{ number_format($totalPrice, 2) }} SR
{{ t('total') }} {{ number_format($totalPrice, 2) }} SR
@if(count($selectedServices) > 0) {{ t('continue_button') }} @endif
@csrf
@endif
{{ t('why_custom_package') ?? 'Why Choose Custom Package?' }}
  • {{ t('why_1') ?? 'Tailored to your specific security needs' }}
  • {{ t('why_2') ?? 'Cost-effective solutions without compromise' }}
  • {{ t('why_3') ?? 'Flexible scaling as your needs grow' }}
  • {{ t('why_4') ?? 'Premium support and consultation included' }}
@endsection