@extends('layouts.app') @php $breadcrumbItems = [ ['label' => 'Sản phẩm', 'url' => route('show-product.index')], ['label' => 'Cập nhật thông tin sản phẩm'] ]; @endphp @push('css') @endpush @section('content') @include('layouts.header')

Cập nhật thông tin sản phẩm

@csrf @method('PUT')
{{--Left--}}
{{-- Size --}} @foreach ($product->productDetails as $index => $detail)
@endforeach
is_new ? 'checked' : '' }} onchange="updateLabel(this)">
is_sale) ? 'checked' : '' }}>
{{ old('Description', $product->description) }} Quay lại
{{-- Right --}}
@if($product->images->count())
@foreach($product->images as $image)
@endforeach
@endif
@endsection @push('js') @endpush