Fix translations typo case

This commit is contained in:
Ludovic CANDELLIER
2021-08-24 22:40:22 +02:00
parent 5bbf63b33f
commit 47ff07451f
28 changed files with 83 additions and 83 deletions

View File

@@ -22,14 +22,14 @@
@include('components.input', ['name' => 'name', 'value' => $article['name'] ?? null, 'required' => true])
</div>
<div class="col-4">
{{ Form::label('article_nature_id', __('Shop.article_natures.name')) }}<br>
{{ Form::label('article_nature_id', __('shop.article_natures.name')) }}<br>
@include('components.select', ['name' => 'article_nature_id', 'list' => $natures_options, 'value' => $article['article_nature_id'] ?? null, 'class' => 'select2', 'with_empty' => ''])
</div>
</div>
<div class="row mb-3">
<div class="col-12">
{{ Form::label('categories', __('Shop.shelves.title')) }}<br>
{{ Form::label('categories', __('shop.shelves.title')) }}<br>
@include('components.select', ['name' => 'categories[]', 'list' => $categories_options, 'values' => $article['categories'] ?? null, 'class' => 'select2', 'multiple' => true])
</div>
</div>