19 lines
543 B
PHP
19 lines
543 B
PHP
@extends('layouts.app')
|
|
@section('content')
|
|
<div class="container-fluid">
|
|
|
|
<x-dashboard.breadcumb :title="$title" />
|
|
|
|
@if ($errors->any())
|
|
<x-flash-message type="danger" :messages="$errors->all()" />
|
|
@endif
|
|
|
|
{{ html()->form('POST')->route('menu.store')->class(['needs-validation'])->attributes(['enctype' => 'multipart/form-data', 'novalidate'])->open() }}
|
|
|
|
@include('menu::menu.partials._form')
|
|
|
|
{{ html()->form()->close() }}
|
|
|
|
</div>
|
|
@endsection
|