dbfdg
{{ Form::open(['url' => 'projects', 'method' => 'post','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','required'=>'required']) }}
{{ 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, null,array('class' => 'form-control','required'=>'required')) !!}
{{ Form::label('user', __('User'),['class'=>'form-label']) }}*
{!! Form::select('user[]', $users, null,array('class' => 'form-control','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', null, ['class' => 'form-control', 'data-toggle' => 'tags']) }}
{{ Form::label('status', __('Status'), ['class' => 'form-label']) }}
{{Form::close()}}