@include('components.forms.inputs.classic-light', [
'id' => 'title',
'label' => 'Titre',
'value' => $product->title ?? null
])
@include('components.forms.inputs.classic-light', [
'id' => 'quantity',
'type' => 'number',
'label' => 'Quantité en stock',
'value' => $product->quantity ?? null
])
@include('components.forms.inputs.price', [
'id' => 'price',
'label' => 'Prix',
'value' => $product->price ?? null
])
@include('components.forms.inputs.price', [
'id' => 'promo_price',
'label' => 'Prix en promo',
'value' => $product->promo_price ?? null
])
@include('components.forms.inputs.textarea-light', [
'id' => 'description',
'label' => "Description",
'value' => $product->description ?? null
])
Images
@include('components.forms.inputs.images', [
'id' => 'images',
'images' => $product->images ?? []
])