dbfdg
{{ Form::model($support,array('route' => array('support.update',$support->id),'method'=>'PUT','enctype'=>"multipart/form-data")) }}
{{-- start for ai module--}}
@php
$plan= \App\Models\Utility::getChatGPTSettings();
@endphp
@if($plan->chatgpt == 1)
@endif
{{-- end for ai module--}}
{{ Form::label('subject', __('Subject'),['class'=>'form-label']) }}
{{ Form::text('subject', null, array('class' => 'form-control','required'=>'required')) }}
@if(\Auth::user()->type !='client')
{{Form::label('user',__('Support for User'),['class'=>'form-label'])}}
{{Form::select('user',$users,null,array('class'=>'form-control select'))}}
@endif
{{Form::label('priority',__('Priority'),['class'=>'form-label'])}}
{{Form::select('priority',$priority,null,array('class'=>'form-control select'))}}
{{Form::label('status',__('Status'),['class'=>'form-label'])}}
{{Form::select('status',$status,null,array('class'=>'form-control select'))}}
{{ Form::label('end_date', __('End Date'),['class'=>'form-label']) }}
{{ Form::date('end_date', null, array('class' => 'form-control','required'=>'required')) }}
{{ Form::label('description', __('Description'),['class'=>'form-label']) }}
{!! Form::textarea('description', null, ['class'=>'form-control','rows'=>'3']) !!}
{{ Form::close() }}