edit.blade.php 555 Bytes
@extends('layout.admin', ['title' => 'Редактирование товара'])

@section('content')
    <div class="profile-block-wrapper">
        <div class="profile-block">
            <h2 class="modal-auth__title">
                Редактирование товара
            </h2>
            <form method="post" enctype="multipart/form-data" class="modal-auth-form" action="{{ route('admin.goods.update', ['good' => $good->id]) }}">
                @include('admin.goods.form')
            </form>
        </div>
    </div>
@endsection