@extends('layouts.app') @section('content')

МАФ на складе

@if(isset($product_sku))
@csrf
@endif
@csrf @include('partials.input', ['name' => 'order_name', 'title' => 'Площадка', 'disabled' => true, 'value' => $product_sku->order->common_name]) @include('partials.input', ['name' => 'product_name', 'title' => 'МАФ', 'disabled' => true, 'value' => $product_sku->product->common_name]) @include('partials.input', ['name' => 'rfid', 'title' => 'RFID', 'required' => true, 'value' => $product_sku->rfid]) @include('partials.input', ['name' => 'factory_number', 'title' => 'Номер фабрики', 'required' => true, 'value' => $product_sku->factory_number]) @include('partials.input', ['name' => 'manufacture_date', 'title' => 'Дата производства', 'type' => 'date', 'required' => true, 'value' => $product_sku->manufacture_date]) @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])
@if($product_sku->passport) @include('partials.input', ['name' => 'cert', 'title' => 'Паспорт', 'value' => $product_sku->passport->original_name, 'disabled' => true]) @endif
@error('comment') {{ $message }} @enderror
@include('partials.submit', ['name' => 'Сохранить', 'offset' => 5])
@endsection