Blame view
resources/views/admin/category/create.blade.php
526 Bytes
6eff6bf11 Админка сайта кат... |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
@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.category.store') }}"> @include('admin.category.form') </form> </div> </div> @endsection |