Blame view
resources/views/admin/goods/edit.blade.php
555 Bytes
1bd0c6ebe Админка, товары. ... |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
@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 |