12 lines
384 B
PHP
12 lines
384 B
PHP
@extends('layouts.app')
|
|
@section('content')
|
|
<div class="container-fluid">
|
|
<x-dashboard.breadcumb :title="$title" />
|
|
|
|
{{ html()->modelForm($event, 'PUT')->route('event.update', $event->id)->class(['needs-validation'])->attributes(['novalidate'])->open() }}
|
|
@include('meeting::events.partials.action')
|
|
{{ html()->form()->close() }}
|
|
|
|
</div>
|
|
@endsection
|