@include('user.product.partials._page-header')
{{-- Identity verification warning --}}
@if (isset($game) && $game->requires_verified && !$isUserVerified)
تنبيه: هذه اللعبة تتطلب توثيق الهوية لإتمام عملية الشراء.
انقر هنا للتوثيق
@endif
@if ($productFormMode === 'modal')
{{-- MODAL MODE: Form appears in a modal dialog --}}
@include('user.product.partials._form-modal')
@endif
@include('user.product.partials._product-cards')
@if ($productFormMode === 'inline')
{{-- INLINE MODE: Form appears below product cards --}}
{{-- Inline form content with submit button --}}
@endif
@include('user.product.partials._form-content', [
'formId' => 'atachmentdata',
'formClass' => 'compact-form',
'showSubmitButton' => true,
'submitFunction' => 'sendNext',
])