dbfdg
{{Form::model($meeting,array('route' => array('meeting.update', $meeting->id), 'method' => 'PUT')) }}
{{-- start for ai module--}}
@php
$plan= \App\Models\Utility::getChatGPTSettings();
@endphp
@if($plan->chatgpt == 1)
@endif
{{-- end for ai module--}}
{{Form::label('title',__('Meeting Title'),['class'=>'form-label'])}}
{{Form::text('title',null,array('class'=>'form-control','placeholder'=>__('Enter Meeting Title'), 'required' => 'required'))}}
{{Form::label('date',__('Meeting Date'),['class'=>'form-label'])}}
{{Form::date('date',null,array('class'=>'form-control ', 'required' => 'required'))}}
{{Form::label('time',__('Meeting Time'),['class'=>'form-label'])}}
{{Form::time('time',null,array('class'=>'form-control timepicker', 'required' => 'required'))}}
{{Form::label('note',__('Meeting Note'),['class'=>'form-label'])}}
{{Form::textarea('note',null,array('class'=>'form-control','placeholder'=>__('Enter Meeting Note')))}}
{{Form::close()}}