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

        </div>
    </div>
@endsection