One Hat Cyber Team
Your IP :
18.218.189.170
Server IP :
104.21.96.1
Server :
Linux agrigation-prod 5.15.0-67-generic #74-Ubuntu SMP Wed Feb 22 14:14:39 UTC 2023 x86_64
Server Software :
nginx/1.24.0
PHP Version :
7.4.33
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
home
/
forge
/
app.gftag.com
/
storage
/
framework
/
views
/
Edit File:
c6c94e5e2bb5585d1ede2dce75cde689.php
<?php $__env->startSection('styles'); ?> <style> .check { margin-left: 1.26rem; margin-top: 24px; } </style> <link rel="stylesheet" href="<?php echo e(asset('css/separate/vendor/bootstrap-select/bootstrap-select.min.css')); ?>"> <link rel="stylesheet" href="<?php echo e(asset('css/separate/vendor/select2.min.css')); ?>"> <?php $__env->stopSection(); ?> <?php $__env->startSection('content'); ?> <div class="page-content"> <div class="container-fluid"> <?php if(session()->has('message')): ?> <div class="alert alert-info alert-fill alert-close alert-dismissible fade in"> <strong><?php echo e(session()->get('message')); ?></strong> </div> <?php endif; ?> <?php if(count($errors) > 0): ?> <div class = "alert alert-danger alert-fill alert-close alert-dismissible fade in"> <ul> <?php $__currentLoopData = $errors->all(); $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $error): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?> <li><?php echo e($error); ?></li> <?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?> </ul> </div> <?php endif; ?> <section class="card"> <div class="row"> <div class="col-lg-6 p-t"> <h3 class="p-l">Edit Organisation</h3> </div> <div class="col-lg-6 p-t p-r-lg"> <a href="<?php echo e(url('/hub/all')); ?>" class="btn btn-rounded float-right p-r">View all</a> </div> </div> </section> <div class="box-typical box-typical-padding"> <form action="<?php echo e(route('update-organisation')); ?> " method="post"> <?php echo csrf_field(); ?> <div class="row"> <input type="hidden" name="id" value="<?php echo e($organisation->id); ?>"> <div class="col-lg-6"> <fieldset class="form-group"> <label class="form-label semibold" for="exampleInput">Organisation Name</label> <input type="text" name="name" class="form-control" id="exampleInput" placeholder="Organisation Name" value="<?php echo e(!empty($organisation) ? $organisation->name : ''); ?>"> </fieldset> </div> <div class="col-lg-6"> <fieldset class="form-group"> <label class="form-label semibold" for="exampleInput">Email</label> <input type="text" name="email" class="form-control" id="exampleInput" placeholder="Organisation Email" value="<?php echo e(!empty($organisation) ? $organisation->email : ''); ?>"> </fieldset> </div> <div class="col-lg-6"> <fieldset class="form-group"> <label class="form-label semibold" for="exampleInput">Phone</label> <input type="text" name="phone" class="form-control" id="exampleInput" placeholder="First Name" value="<?php echo e(!empty($organisation) ? $organisation->phone : ''); ?>"> </fieldset> </div> <div class="col-lg-6"> <fieldset class="form-group"> <label class="form-label semibold" for="exampleInput">Pan Number</label> <input type="text" name="pan" class="form-control" id="exampleInput" value="<?php echo e(!empty($organisation) ? $organisation->pan : ''); ?>"> </fieldset> </div> <div class="col-lg-6"> <fieldset class="form-group"> <label class="form-label semibold" for="exampleInput">Organisation Address</label> <input type="text" name="address" class="form-control" id="exampleInput" placeholder="Address" value="<?php echo e(!empty($organisation) ? $organisation->address : ''); ?>"> </fieldset> </div> <div class="col-lg-6"> <fieldset class="form-group"> <label class="form-label semibold" for="exampleInput">GST Number</label> <input type="text" name="gst_no" class="form-control" id="exampleInput" placeholder="GST Number" value="<?php echo e(!empty($organisation) ? $organisation->gst_no : ''); ?>"> </fieldset> </div> <div class="col-lg-6"> <fieldset class="form-group"> <label class="form-label semibold" for="exampleInput">State</label> <select required class="form-control" name="state"> <?php $__currentLoopData = $states; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $state): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?> <option value="<?php echo e($state->id); ?>" <?php if($organisation->state_id == $state->id): ?> selected <?php endif; ?> ><?php echo e($state->name); ?></option> <?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?> </select> </fieldset> </div> <div class="col-lg-6"> <fieldset class="form-group"> <label class="form-label semibold" for="exampleInput">Change Password</label> <input type="text" name="password" class="form-control" id="exampleInput" placeholder="Write Your Password Here" value=""> </fieldset> </div> </div><!--.row--> <div class="row m-t"> <div class="col-lg-12"> <button type="submit" name="update_organisation" class="btn btn-inline btn-success p-x-3 p-y">Update Organisation </button> </div> </div> </form> </div><!--.box-typical--> </div> </div> <?php $__env->stopSection(); ?> <?php $__env->startSection('scripts'); ?> <script src="<?php echo e(asset('js/lib/bootstrap-select/bootstrap-select.min.js')); ?>"></script> <script src="<?php echo e(asset('js/lib/select2/select2.full.min.js')); ?>"></script> <script> $(document).ready(function(){ $(".deactivate").on('change', function(e){ e.preventDefault(); if($(this).is(':checked')){ $(this).val(1); } else{ $(this).attr('checked',''); $(this).val(0); } }); }) </script> <?php $__env->stopSection(); ?> <?php echo $__env->make('layouts.master', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?><?php /**PATH /home/forge/app.gftag.com/resources/views/organisation/edit.blade.php ENDPATH**/ ?>
Simpan