18 lines
642 B
PHP
18 lines
642 B
PHP
@section('meta_title', __('admin-sections.Projects'))
|
|
@section('h1', __('admin-sections.Projects'))
|
|
@section('breadcrumbs', Breadcrumbs::render('admin.projects.create'))
|
|
<x-admin.layout>
|
|
@include('admin.projects._top')
|
|
<div class="row">
|
|
<div class="col-12 mb-4">
|
|
<div class="card border-0 shadow components-section">
|
|
<div class="card-body">
|
|
<form method="post" action="{{ route('admin.projects.store') }}">
|
|
@include('admin.projects._from')
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</x-admin.layout>
|