|
Server : Apache/2.4.41 (Ubuntu) System : Linux vmi1525618.contaboserver.net 5.4.0-105-generic #119-Ubuntu SMP Mon Mar 7 18:49:24 UTC 2022 x86_64 User : www-data ( 33) PHP Version : 8.2.12 Disable Function : NONE Directory : /var/www/erp.theinteractive.co.in/storage/framework/views/ |
Upload File : |
<?php echo e(Form::open(array('url'=>'goaltracking','method'=>'post'))); ?>
<div class="modal-body">
<?php
$plan= \App\Models\Utility::getChatGPTSettings();
?>
<?php if($plan->chatgpt == 1): ?>
<div class="text-end">
<a href="#" data-size="md" class="btn btn-primary btn-icon btn-sm" data-ajax-popup-over="true" data-url="<?php echo e(route('generate',['goal tracking'])); ?>"
data-bs-placement="top" data-title="<?php echo e(__('Generate content with AI')); ?>">
<i class="fas fa-robot"></i> <span><?php echo e(__('Generate with AI')); ?></span>
</a>
</div>
<?php endif; ?>
<div class="row">
<div class="col-md-6">
<div class="form-group">
<?php echo e(Form::label('branch',__('Branch'),['class'=>'form-label'])); ?>
<?php echo e(Form::select('branch',$brances,null,array('class'=>'form-control select','required'=>'required'))); ?>
</div>
</div>
<div class="col-md-6">
<div class="form-group">
<?php echo e(Form::label('goal_type',__('GoalTypes'),['class'=>'form-label'])); ?>
<?php echo e(Form::select('goal_type',$goalTypes,null,array('class'=>'form-control select','required'=>'required'))); ?>
</div>
</div>
<div class="col-md-6">
<div class="form-group">
<?php echo e(Form::label('start_date',__('Start Date'),['class'=>'form-label'])); ?>
<?php echo e(Form::date('start_date',null,array('class' => 'form-control '))); ?>
</div>
</div>
<div class="col-md-6">
<div class="form-group">
<?php echo e(Form::label('end_date',__('End Date'),['class'=>'form-label'])); ?>
<?php echo e(Form::date('end_date',null,array('class' => 'form-control '))); ?>
</div>
</div>
<div class="col-md-12">
<div class="form-group">
<?php echo e(Form::label('subject',__('Subject'),['class'=>'form-label'])); ?>
<?php echo e(Form::text('subject',null,array('class'=>'form-control'))); ?>
</div>
</div>
<div class="col-md-12">
<div class="form-group">
<?php echo e(Form::label('target_achievement',__('Target Achievement'),['class'=>'form-label'])); ?>
<?php echo e(Form::text('target_achievement',null,array('class'=>'form-control'))); ?>
</div>
</div>
<div class="col-md-12">
<div class="form-group">
<?php echo e(Form::label('description',__('Description'),['class'=>'form-label'])); ?>
<?php echo e(Form::textarea('description',null,array('class'=>'form-control description'))); ?>
</div>
</div>
<div class="col-md-12">
<div class="form-group">
<?php echo e(Form::label('status',__('Status'),['class'=>'form-label'])); ?>
<?php echo e(Form::select('status',$status,null,array('class'=>'form-control select'))); ?>
</div>
</div>
<div class="col-md-12">
<fieldset id='demo1' class="rating">
<input class="stars" type="radio" id="rating-5" name="rating" value="5" >
<label class="full" for="rating-5" title="Awesome - 5 stars"></label>
<input class="stars" type="radio" id="rating-4" name="rating" value="4" >
<label class="full" for="rating-4" title="Pretty good - 4 stars"></label>
<input class="stars" type="radio" id="rating-3" name="rating" value="3" >
<label class="full" for="rating-3" title="Meh - 3 stars"></label>
<input class="stars" type="radio" id="rating-2" name="rating" value="2" >
<label class="full" for="rating-2" title="Kinda bad - 2 stars"></label>
<input class="stars" type="radio" id="technical-1" name="rating" value="1" >
<label class="full" for="technical-1" title="Sucks big time - 1 star"></label>
</fieldset>
</div>
</div>
<div class="modal-footer">
<input type="button" value="<?php echo e(__('Cancel')); ?>" class="btn btn-light" data-bs-dismiss="modal">
<input type="submit" value="<?php echo e(__('Create')); ?>" class="btn btn-primary">
</div>
</div>
<?php echo e(Form::close()); ?>
<?php /**PATH /var/www/erp.theinteractive.co.in/resources/views/goaltracking/create.blade.php ENDPATH**/ ?>