{{ Form::label('package_id', 'Package') }} @include('components.form.select', ['name' => 'package_id', 'list' => $packages ?? [], 'value' => $variation['package_id'] ?? false, 'required' => true, 'with_empty' => ''])
{{ Form::label('quantity', 'Quantité') }} @include('components.form.input', ['name' => 'quantity', 'value' => $variation['quantity'] ?? false, 'required' => true])
{{ Form::label('unity_id', 'Unité') }} @include('components.form.select', ['name' => 'unity_id', 'list' => $unities ?? [], 'value' => $variation['unity_id'] ?? false, 'required' => false, 'with_empty' => ''])
{{ Form::label('description', 'Description') }} @include('components.form.textarea', ['name' => 'description', 'value' => isset($variation['description']) ? $variation['description'] : null, 'class' => 'editor', 'required' => false])
@include('components.save') @include('load.form.editor') @include('load.form.save') @push('js') @endpush