adjust deliveries by customer
This commit is contained in:
@@ -1,55 +1,55 @@
|
||||
<div class="row mb-3">
|
||||
<div class="col-8">
|
||||
<div class="row mb-3">
|
||||
<div class="col-6">
|
||||
{{ Form::label('product_type', 'Famille de produit') }}
|
||||
@include('components.form.select', [
|
||||
'name' => 'product_type',
|
||||
'value' => $article_nature['product_type'] ?? null,
|
||||
'list' => $product_types ?? null,
|
||||
'required' => true,
|
||||
])
|
||||
</div>
|
||||
<div class="col-6">
|
||||
{{ Form::label('name', 'Nom') }}
|
||||
@include('components.form.input', [
|
||||
'name' => 'name',
|
||||
'value' => $article_nature['name'] ?? null,
|
||||
'required' => true,
|
||||
])
|
||||
</div>
|
||||
</div>
|
||||
<div class="row mb-3">
|
||||
<div class="col-12">
|
||||
{{ Form::label('description', 'Description') }}
|
||||
@include('components.form.textarea', [
|
||||
'name' => 'description',
|
||||
'value' => $article_nature['description'] ?? null,
|
||||
'class' => 'editor',
|
||||
'required' => false,
|
||||
])
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-8">
|
||||
<div class="row mb-3">
|
||||
<div class="col-6">
|
||||
{{ Form::label('product_type', 'Famille de produit') }}
|
||||
@include('components.form.select', [
|
||||
'name' => 'product_type',
|
||||
'value' => $article_nature['product_type'] ?? null,
|
||||
'list' => $product_types ?? null,
|
||||
'required' => true,
|
||||
])
|
||||
</div>
|
||||
<div class="col-6">
|
||||
{{ Form::label('name', 'Nom') }}
|
||||
@include('components.form.input', [
|
||||
'name' => 'name',
|
||||
'value' => $article_nature['name'] ?? null,
|
||||
'required' => true,
|
||||
])
|
||||
</div>
|
||||
</div>
|
||||
<div class="row mb-3">
|
||||
<div class="col-12">
|
||||
{{ Form::label('description', 'Description') }}
|
||||
@include('components.form.textarea', [
|
||||
'name' => 'description',
|
||||
'value' => $article_nature['description'] ?? null,
|
||||
'class' => 'editor',
|
||||
'required' => false,
|
||||
])
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="col-2">
|
||||
<x-card title="{{ __('icone') }}">
|
||||
@include('components.widgets.imgUpload', [
|
||||
'name' => 'icon',
|
||||
'id_name' => 'icon',
|
||||
'file' => $article_nature['icon'] ?? false,
|
||||
])
|
||||
</x-card>
|
||||
</div>
|
||||
<div class="col-2">
|
||||
<x-card title="{{ __('icone selection') }}">
|
||||
@include('components.widgets.imgUpload', [
|
||||
'name' => 'icon_selection',
|
||||
'id_name' => 'icon_selection',
|
||||
'file' => $article_nature['icon_selection'] ?? false,
|
||||
])
|
||||
</x-card>
|
||||
</div>
|
||||
<div class="col-2">
|
||||
<x-card title="{{ __('icone') }}">
|
||||
@include('components.widgets.imgUpload', [
|
||||
'name' => 'icon',
|
||||
'id_name' => 'icon',
|
||||
'file' => $article_nature['icon'] ?? false,
|
||||
])
|
||||
</x-card>
|
||||
</div>
|
||||
<div class="col-2">
|
||||
<x-card title="{{ __('icone selection') }}">
|
||||
@include('components.widgets.imgUpload', [
|
||||
'name' => 'icon_selection',
|
||||
'id_name' => 'icon_selection',
|
||||
'file' => $article_nature['icon_selection'] ?? false,
|
||||
])
|
||||
</x-card>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<x-save />
|
||||
@@ -59,11 +59,13 @@
|
||||
@include('load.form.save')
|
||||
|
||||
@push('js')
|
||||
<script>
|
||||
$(function() {
|
||||
initEditor();
|
||||
initUploadImage();
|
||||
initSaveForm('#article_nature-form');
|
||||
});
|
||||
</script>
|
||||
@endpush
|
||||
{!! JsValidator::formRequest('App\Http\Requests\Admin\Shop\StoreArticleNaturePost', '#article_nature-form') !!}
|
||||
|
||||
<script>
|
||||
$(function() {
|
||||
initEditor();
|
||||
initUploadImage();
|
||||
initSaveForm('#article_nature-form');
|
||||
});
|
||||
</script>
|
||||
@endpush
|
||||
|
||||
Reference in New Issue
Block a user