create.blade.php 508 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.store') }}">
                @include('admin.goods.form')
            </form>

        </div>
    </div>
@endsection