dbfdg
{{ Form::model($bug, array('route' => array('task.bug.update', $project_id,$bug->id ), 'method' => 'POST')) }}
{{-- start for ai module--}}
@php
$plan= \App\Models\Utility::getChatGPTSettings();
@endphp
@if($plan->chatgpt == 1)
@endif
{{-- end for ai module--}}
{{ Form::label('title', __('Title'),['class'=>'form-label']) }}
{{ Form::text('title', null, array('class' => 'form-control','required'=>'required')) }}
{{ Form::label('priority', __('Priority'),['class'=>'form-label']) }}
{!! Form::select('priority', $priority, null,array('class' => 'form-control select','required'=>'required')) !!}
{{ Form::label('start_date', __('Start Date'),['class'=>'form-label']) }}
{{ Form::date('start_date', null, array('class' => 'form-control','required'=>'required')) }}
{{ Form::label('due_date', __('Due Date'),['class'=>'form-label']) }}
{{ Form::date('due_date', null, array('class' => 'form-control','required'=>'required')) }}
{{ Form::label('status', __('Bug Status'),['class'=>'form-label']) }}
{!! Form::select('status', $status, null,array('class' => 'form-control select','required'=>'required')) !!}
{{ Form::label('assign_to', __('Assigned To'),['class'=>'form-label']) }}
{{ Form::select('assign_to', $users, null,array('class' => 'form-control select','required'=>'required')) }}
{{ Form::label('description', __('Description'),['class'=>'form-label']) }}
{!! Form::textarea('description', null, ['class'=>'form-control','rows'=>'2']) !!}
{{Form::close()}}