dbfdg
{{ Form::model($project, ['route' => ['projects.update', $project->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('project_name', __('Project Name'), ['class' => 'form-label']) }}*
{{ Form::text('project_name', null, ['class' => 'form-control']) }}
{{ Form::label('start_date', __('Start Date'), ['class' => 'form-label']) }}
{{ Form::date('start_date', null, ['class' => 'form-control']) }}
{{ Form::label('end_date', __('End Date'), ['class' => 'form-label']) }}
{{ Form::date('end_date', null, ['class' => 'form-control']) }}
{{ Form::label('client', __('Client'),['class'=>'form-label']) }}*
{!! Form::select('client', $clients, $project->client_id,array('class' => 'form-control select2','id'=>'choices-multiple1','required'=>'required')) !!}
{{ Form::label('budget', __('Budget'), ['class' => 'form-label']) }}
{{ Form::number('budget', null, ['class' => 'form-control']) }}
{{ Form::label('estimated_hrs', __('Estimated Hours'),['class' => 'form-label']) }}
{{ Form::number('estimated_hrs', null, ['class' => 'form-control','min'=>'0','maxlength' => '8']) }}
{{ Form::label('description', __('Description'), ['class' => 'form-label']) }}
{{ Form::textarea('description', null, ['class' => 'form-control', 'rows' => '4', 'cols' => '50']) }}
{{ Form::label('tag', __('Tag'), ['class' => 'form-label']) }}
{{ Form::text('tag', isset($project->tags) ? $project->tags: '', ['class' => 'form-control', 'data-toggle' => 'tags']) }}
{{ Form::label('status', __('Status'), ['class' => 'form-label']) }}
{{ Form::label('project_image', __('Project Image'), ['class' => 'form-label']) }}
*
![]()
img_image}} class="avatar avatar-xl" alt="">
{{Form::close()}}