⚝
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 :
7d7e6c596a5972cb58ec22893379058c.php
<?php echo e(Form::model($event,array('route' => array('event.update', $event->id), 'method' => 'PUT'))); ?> <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',['event'])); ?>" 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-12"> <div class="form-group"> <?php echo e(Form::label('title',__('Event Title'),['class'=>'form-label'])); ?> <?php echo e(Form::text('title',null,array('class'=>'form-control','placeholder'=>__('Enter Event Title')))); ?> </div> </div> </div> <div class="row"> <div class="col-md-6"> <div class="form-group"> <?php echo e(Form::label('start_date',__('Event 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',__('Event End Date'),['class'=>'form-label'])); ?> <?php echo e(Form::date('end_date',null,array('class'=>'form-control '))); ?> </div> </div> </div> <div class="row"> <div class="col-12"> <div class="form-group"> <?php echo e(Form::label('color', __('Event Select Color'), ['class' => 'col-form-label d-block mb-3'])); ?> <div class=" btn-group-toggle btn-group-colors event-tag" data-toggle="buttons"> <label class="btn bg-info p-3 <?php echo e($event->color == 'event-info' ? 'custom_color_radio_button ' : ''); ?> "><input type="radio" name="color" class="d-none" value="event-info" <?php echo e($event->color == 'event-info' ? 'checked' : ''); ?>></label> <label class="btn bg-warning p-3 <?php echo e($event->color == 'event-warning' ? 'custom_color_radio_button' : ''); ?>"><input type="radio" class="d-none" name="color" value="event-warning" <?php echo e($event->color == 'event-warning' ? 'checked' : ''); ?>></label> <label class="btn bg-danger p-3 <?php echo e($event->color == 'event-danger' ? 'custom_color_radio_button' : ''); ?>"><input type="radio" name="color" class="d-none" value="event-danger" <?php echo e($event->color == 'event-danger' ? 'checked' : ''); ?>></label> <label class="btn bg-primary p-3 <?php echo e($event->color == 'event-success' ? 'custom_color_radio_button' : ''); ?>"><input type="radio" class="d-none" name="color" value="event-success" <?php echo e($event->color == 'event-success' ? 'checked' : ''); ?>></label> <label class="btn p-3 <?php echo e($event->color == 'event-primary' ? 'custom_color_radio_button' : ''); ?>" style="background-color: #51459d !important"><input type="radio" class="d-none" name="color" value="event-primary" <?php echo e($event->color == 'event-primary' ? 'checked' : ''); ?>></label> </div> </div> </div> </div> <div class="row"> <div class="col-md-12"> <div class="form-group"> <?php echo e(Form::label('description',__('Event Description'),['class'=>'form-label'])); ?> <?php echo e(Form::textarea('description',null,array('class'=>'form-control','placeholder'=>__('Enter Event Description')))); ?> </div> </div> </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(__('Update')); ?>" class="btn btn-primary"> </div> <?php echo e(Form::close()); ?> <?php $__env->startPush('script-page'); ?> <script> if ($(".datepicker").length) { $('.datepicker').daterangepicker({ singleDatePicker: true, format: 'yyyy-mm-dd', locale: date_picker_locale, }); } </script> <?php $__env->stopPush(); ?> <?php /**PATH /var/www/html/resources/views/event/edit.blade.php ENDPATH**/ ?>