@php $isEdit = $product->exists; $action = $isEdit ? route('admin.products.update', $product) : route('admin.products.store'); $productColors = $isEdit ? $product->colors->pluck('id')->all() : []; $productMaterials = $isEdit ? $product->materials->pluck('id')->all() : []; @endphp
@csrf @if($isEdit) @method('PUT') @endif @if($errors->any())
@endif
{{-- ===== Basic ===== --}}
يمكن لاحقاً ربطه بـ TinyMCE / CKEditor.
is_featured))>
{{-- ===== Pricing ===== --}}
لمنع الخسارة عند تطبيق الخصم
{{-- ===== Stock ===== --}}
track_stock ?? true))>
تنبيه عند النزول تحت هذا الحد
{{-- ===== Dimensions / Materials / Colors ===== --}}
{{-- ===== Images ===== --}}
@if($isEdit) @php $main = $product->getFirstMedia('main'); @endphp @if($main)
@endif @endif
@if($isEdit) @php $gallery = $product->getMedia('gallery'); @endphp @if($gallery->count())
@foreach($gallery as $img)
@endforeach
@endif @endif
{{-- ===== SEO ===== --}}
يُولَّد تلقائياً من الاسم الإنجليزي/العربي إن تركته فارغاً.
@push('scripts') @endpush