24 lines
843 B
PHP
24 lines
843 B
PHP
@extends('layouts.shop')
|
|
|
|
@section('content')
|
|
@include('partials.breadcrumbs', [
|
|
'items' => [
|
|
['label' => 'Админка', 'url' => route('admin.dashboard')],
|
|
['label' => 'Товары', 'url' => route('admin.products.index')],
|
|
['label' => 'Редактирование', 'url' => null],
|
|
],
|
|
])
|
|
|
|
<section class="pc-section">
|
|
<div class="pc-section-title">
|
|
<h2>Редактирование товара</h2>
|
|
</div>
|
|
|
|
<form class="pc-card pc-form" method="post" action="{{ route('admin.products.update', $product) }}" enctype="multipart/form-data">
|
|
@csrf
|
|
@method('put')
|
|
@include('admin.products._form', ['product' => $product, 'submitLabel' => 'Сохранить'])
|
|
</form>
|
|
</section>
|
|
@endsection
|