@extends('admin.layouts.master') @section('css') @include('admin.helper.formscss') @endsection @include('admin.helper.tittle', ['title' => 'تعديل العرض الترويجي']) @section('content')
@csrf @method('PUT')

تعديل العرض الترويجي

رجوع للقائمة
@include('admin.partials.alerts')
{{-- Current Entity Display (Read-Only) --}}
الكيان المرتبط
@if($promotion->promotable_type === 'App\Models\Game') لعبة @else منتج @endif {{ $promotion->promotable->name ?? 'غير متوفر' }}
لا يمكن تغيير الكيان المرتبط. لتغييره، احذف هذا العرض وأنشئ عرضاً جديداً.
{{-- Promotion Type Selector --}}
{{ old('type', $promotion->type) === 'discount' ? 'خصم' : 'عرض' }} @error('type') {{ $message }} @enderror
{{-- Label Input with Character Counter --}}
الحد الأقصى 50 حرف {{ strlen(old('label', $promotion->label)) }}/50
@error('label') {{ $message }} @enderror
{{-- Is Active Toggle --}}
الحالة
is_active) ? 'checked' : '' }}>
العرض سيظهر فقط عند تفعيله @error('is_active') {{ $message }} @enderror
إلغاء
@endsection @section('js') @include('admin.helper.formscripts') @endsection