@include('vendor.partials.top-header')
@if ($errors->any())
Erreurs :
@foreach ($errors->all() as $error)
- {{ $error }}
@endforeach
@endif
@if (session('success'))
{{ session('success') }}
@endif
@php
$variantsValue = old('variants_json');
if (!$variantsValue) {
$variantsValue = json_encode($product->variants_json ?? []);
}
@endphp