@extends('frontend.layout') @section('title', 'Inve Security - ' . t('Overview - Confirm Your Details')) @section('description', 'Review and confirm all your business registration details before proceeding.') @section('content')
@for($i = 1; $i <= 6; $i++)
{{ $i }}
@if($i < 6)
@endif
@endfor
{{ t('final_review') ?? 'Final Review' }}

{{ t('review_your') ?? 'Review Your' }} {{ t('business_details') ?? 'Business Details' }}

{{ t('evething_look_perfect') ?? 'Everything looks perfect! Review your details before final submission.' }}

{{ $package ? $package->name : t('custom_package') ?? 'Custom Package' }}

@if (count($packageData) > 0)
{{ t('services') ?? 'Services' }} {{ count($packageData) }} {{ t('items') ?? 'items' }}
@foreach ($packageData as $service)
{{ $service['name'] }}
@if ($packageType != 'prebuilt')

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

@endif
@if ($packageType != 'prebuilt')
@csrf
@endif
@endforeach
{{ t('subtotal') ?? 'Subtotal' }} {{ number_format($totalPrice, 2) }} SR
{{ t('total_amount') ?? 'Total Amount' }} {{ number_format($totalPrice, 2) }} SR
@else

{{ t('no_package_selected') ?? 'No package selected' }}

@endif

{{ t('contact_information') ?? 'Contact Information' }}

@php $contactInfo = session('contact_info'); @endphp @if ($contactInfo)

{{ $contactInfo['name'] }}

{{ $contactInfo['email'] }}

@if ($contactInfo['company'])

{{ $contactInfo['company'] }}

@endif @if ($contactInfo['phone'] || $contactInfo['full_phone'])

{{ $contactInfo['full_phone'] ?? $contactInfo['phone'] }}

@endif @else

{{ t('no_contact_information_provided') ?? 'No contact information provided' }}

@endif

{{ t('business_details') ?? 'Business Details' }}

@php $businessType = session('business_type') ? \App\Models\BusinessType::find(session('business_type')) : null; $businessModel = session('business_model') ? \App\Models\BusinessModel::find(session('business_model')) : null; @endphp

{{ $businessType ? $businessType->name : (t('not_selected') ?? 'Not Selected') }}

{{ $businessModel ? $businessModel->name : (t('not_selected') ?? 'Not Selected') }}

@if($branch)

{{ $branch->name }}

{{ Str::limit($branch->addressline1, 30) }}

@else

{{ t('not_selected') ?? 'Not Selected' }}

@endif
@if($branch)

{{ $branch->branch_type_name }}

@if($branch->phone)

{{ $branch->phone }}

@endif @if($branch->email)

{{ $branch->email }}

@endif @if($branch->opening_hour && $branch->opening_day)

{{ $branch->opening_hour }}

{{ $branch->opening_day }}

@endif
@endif

{{ t('ready_to_submit') ?? 'Ready to Submit Your Application?' }}

{{ t('double_check_all_information_before_submission') ?? 'Double-check all information before final submission to ensure accuracy.' }}

{{ t('review_details') ?? 'Review Details' }}
@csrf

{{ t('what_happens_next') ?? 'What Happens Next?' }}

1

{{ t('application_review') ?? 'Application Review' }}

{{ t('our_expert_team_will_review') ?? 'Our expert team will review your application within 24-48 hours.' }}

2

{{ t('document_preparation') ?? 'Document Preparation' }}

{{ t('we_prepare_all_necessary_legal_documents') ?? 'We prepare all necessary legal documents and registration forms.' }}

3

{{ t('registration_launch') ?? 'Registration & Launch' }}

{{ t('your_business_gets_officia') ?? 'Your business gets officially registered and ready to launch!' }}

@endsection