17 lines
397 B
PHP
17 lines
397 B
PHP
@extends('layouts.app')
|
|
@section('content')
|
|
<div class="container-fluid">
|
|
|
|
<x-dashboard.breadcumb :title="$title" />
|
|
|
|
|
|
{{ html()->form('POST')->route('meeting.store')->class(['needs-validation'])->attributes(['novalidate'])->open() }}
|
|
|
|
@include('meeting::meeting.partials.action')
|
|
|
|
{{ html()->form()->close() }}
|
|
|
|
</div>
|
|
</div>
|
|
@endsection
|