|
@@ -5,8 +5,11 @@
|
|
|
<div class="px-3">
|
|
<div class="px-3">
|
|
|
|
|
|
|
|
<form class="row" action="{{ route('product_sku.update', $product_sku) }}" method="post">
|
|
<form class="row" action="{{ route('product_sku.update', $product_sku) }}" method="post">
|
|
|
- <div class="col-xxl-6">
|
|
|
|
|
|
|
+ <div class="col-12">
|
|
|
<h4>МАФ на складе</h4>
|
|
<h4>МАФ на складе</h4>
|
|
|
|
|
+ </div>
|
|
|
|
|
+ <div class="col-xxl-6">
|
|
|
|
|
+
|
|
|
@csrf
|
|
@csrf
|
|
|
|
|
|
|
|
<input type="hidden" id="product_id" name="product_id" value="{{ $product_sku->product_id }}">
|
|
<input type="hidden" id="product_id" name="product_id" value="{{ $product_sku->product_id }}">
|
|
@@ -21,14 +24,28 @@
|
|
|
@include('partials.input', ['name' => 'certificate_date', 'title' => 'Дата сертификата', 'type' => 'date', 'required' => true, 'value' => $product_sku->certificate_date])
|
|
@include('partials.input', ['name' => 'certificate_date', 'title' => 'Дата сертификата', 'type' => 'date', 'required' => true, 'value' => $product_sku->certificate_date])
|
|
|
@include('partials.input', ['name' => 'certificate_issuer', 'title' => 'Орган сертификации', 'required' => true, 'value' => $product_sku->certificate_issuer])
|
|
@include('partials.input', ['name' => 'certificate_issuer', 'title' => 'Орган сертификации', 'required' => true, 'value' => $product_sku->certificate_issuer])
|
|
|
@include('partials.input', ['name' => 'certificate_type', 'title' => 'Вид сертификации', 'required' => true, 'value' => $product_sku->certificate_type])
|
|
@include('partials.input', ['name' => 'certificate_type', 'title' => 'Вид сертификации', 'required' => true, 'value' => $product_sku->certificate_type])
|
|
|
- @include('partials.input', ['name' => 'statement_number', 'title' => 'Номер ведомости', 'required' => true, 'value' => $product_sku->statement_number])
|
|
|
|
|
- @include('partials.input', ['name' => 'statement_date', 'title' => 'Дата ведомости', 'type' => 'date', 'required' => true, 'value' => $product_sku->statement_date])
|
|
|
|
|
- @include('partials.input', ['name' => 'upd_number', 'title' => 'Номер УПД', 'required' => true, 'value' => $product_sku->upd_number])
|
|
|
|
|
- @include('partials.textarea', ['name' => 'comment', 'title' => 'Примечания', 'required' => false, 'size' => 10, 'value' => $product_sku->comment])
|
|
|
|
|
|
|
+ @include('partials.input', ['name' => 'statement_number', 'title' => 'Номер ведомости', 'value' => $product_sku->statement_number])
|
|
|
|
|
+ @include('partials.input', ['name' => 'statement_date', 'title' => 'Дата ведомости', 'type' => 'date', 'value' => $product_sku->statement_date])
|
|
|
|
|
+ @include('partials.input', ['name' => 'upd_number', 'title' => 'Номер УПД', 'value' => $product_sku->upd_number])
|
|
|
|
|
+ </div>
|
|
|
|
|
+ <div class="col-xxl-6">
|
|
|
|
|
+ <div class="row mb-2">
|
|
|
|
|
+ <label for="comment" class="col-form-label my-1">
|
|
|
|
|
+ Примечание
|
|
|
|
|
+ </label>
|
|
|
|
|
+ <div>
|
|
|
|
|
+ <textarea name="comment" id="comment" rows="15" class="form-control @error('comment') is-invalid @enderror">{{ old('note', $product_sku->comment ?? '') }}</textarea>
|
|
|
|
|
+ @error('comment')
|
|
|
|
|
+ <span class="invalid-feedback" role="alert"><strong>{{ $message }}</strong></span>
|
|
|
|
|
+ @enderror
|
|
|
|
|
+ </div>
|
|
|
|
|
+ </div>
|
|
|
|
|
|
|
|
|
|
|
|
|
<input type="hidden" name="redirect_url" value="{{ url()->previous() }}">
|
|
<input type="hidden" name="redirect_url" value="{{ url()->previous() }}">
|
|
|
- @include('partials.submit', ['name' => 'Сохранить'])
|
|
|
|
|
|
|
+ </div>
|
|
|
|
|
+ <div class="col-12">
|
|
|
|
|
+ @include('partials.submit', ['name' => 'Сохранить', 'offset' => 5])
|
|
|
</div>
|
|
</div>
|
|
|
</form>
|
|
</form>
|
|
|
@endsection
|
|
@endsection
|