@if ($currentWorkspace->is_chagpt_enable())
@endif
{{ Form::label('client_id', __('Client Name'), ['class' => 'col-form-label']) }}
{{ Form::select('client_id', $client, null, ['class' => 'form-control client_id', 'id' => 'client_id', 'data-toggle' => 'select', 'required' => 'required']) }}
{{ Form::label('subject', __('Subject'), ['class' => 'col-form-label']) }}
{{ Form::text('subject', null, ['class' => 'form-control', 'required' => 'required', 'placeholder' => __('Enter subject of contract')]) }}
{{ Form::label('value', __('Value'), ['class' => 'col-form-label']) }}
{{ Form::number('value', null, ['class' => 'form-control', 'required' => 'required', 'min' => '1', 'placeholder' => __('Enter value of contract')]) }}
{{ Form::label('start_date', __('Start Date'), ['class' => 'col-form-label']) }}
{{ Form::date('start_date', null, ['class' => 'form-control', 'required' => 'required']) }}
{{ Form::label('end_date', __('End Date'), ['class' => 'col-form-label']) }}
{{ Form::date('end_date', null, ['class' => 'form-control', 'required' => 'required']) }}
{{ Form::label('type', __('Type'), ['class' => 'col-form-label']) }}
{{ Form::select('type', $contractType, null, ['class' => 'form-control', 'required' => 'required']) }}
{{ Form::label('description', __('Description'), ['class' => 'col-form-label']) }}
{{ Form::textarea('description', null, ['class' => 'form-control', 'placeholder' => __('Enter description about contract...')]) }}
{{--
--}}