This commit is contained in:
ludo
2024-02-19 23:51:32 +01:00
parent b0b87db86d
commit 927be4ea77
18 changed files with 440 additions and 85 deletions

View File

@@ -1,4 +1,9 @@
{{ Form::open(['route' => 'Admin.Shop.Articles.store', 'id' => 'article-form', 'autocomplete' => 'off', 'files' => true]) }}
{{ Form::open([
'route' => 'Admin.Shop.Articles.store',
'id' => 'article-form',
'autocomplete' => 'off',
'files' => true,
]) }}
<input type="hidden" name="id" id="id" value="{{ $article['id'] ?? null }}">
@include('Admin.Shop.Articles.partials.characteristics')
{{ Form::close() }}

View File

@@ -34,14 +34,6 @@
</div>
</div>
</div>
<div class="col-1">
@include('components.form.input', [
'name' => 'weight',
'value' => $variation['weight'] ?? false,
'required' => true,
'label' => 'Poids',
])
</div>
</div>
<div class="row mb-3">