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
/
View File Name :
0f6e41d1190d0d86a0be186b1fb3fe06.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">Settings</h3> </div> </div> </section> <div class="box-typical box-typical-padding"> <form action="<?php echo e(route('update-settings')); ?> " method="post" enctype="multipart/form-data"> <?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" 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 readonly type="text" name="email" class="form-control" id="exampleInput" 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" 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">Organisation Address</label> <input type="text" name="address" class="form-control" id="exampleInput" 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" 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-12"> <fieldset class="form-group"> <label class="form-label semibold" for="exampleInput">Bank Details</label> <textarea class="form-control" name="bank_details" value="<?php echo e(!empty($organisation) ? $organisation->bank_details : ''); ?>"><?php echo e(!empty($organisation) ? $organisation->bank_details : ''); ?></textarea> </fieldset> </div> <div class="col-lg-6"> <fieldset class="form-group"> <label class="form-label semibold" for="exampleInputPassword1"> Logo </label> <input type="file" name="logo" class="form-control" id="exampleInputPassword1"> </fieldset> <?php if($organisation->logo): ?> <img src="<?php echo e($organisation->logo); ?>" width="100"/> <?php endif; ?> </div> <div class="col-lg-6"> <fieldset class="form-group"> <label class="form-label semibold" for="exampleInputPassword1"> Digital Signature <small>(The maximum allowed file size is 120 KB.)</small> </label> <input type="file" name="signature" class="form-control" id="exampleInputPassword1"> </fieldset> <?php if($organisation->signature): ?> <img src="<?php echo e($organisation->signature); ?>" width="100"/> <?php endif; ?> </div> </div><!--.row--> <h4 class="m-t-3">Shareholder Settings</h4> <div class="row"> <div class="col-lg-6"> <fieldset class="form-group"> <label class="form-label semibold" for="exampleInputPassword1"> Director Signature <small>(The maximum allowed file size is 120 KB.)</small> </label> <input type="file" name="director_signature" class="form-control" id="exampleInputPassword1"> </fieldset> <?php if($organisation->director_signature): ?> <img src="<?php echo e($organisation->director_signature); ?>" width="100"/> <?php endif; ?> </div> <div class="col-lg-6"> <fieldset class="form-group"> <label class="form-label semibold" for="exampleInputPassword1"> Authorized Signature <small>(The maximum allowed file size is 120 KB.)</small> </label> <input type="file" name="authorized_signature" class="form-control" id="exampleInputPassword1"> </fieldset> <?php if($organisation->authorized_signature): ?> <img src="<?php echo e($organisation->authorized_signature); ?>" width="100"/> <?php endif; ?> </div> <div class="col-lg-6"> <fieldset class="form-group"> <label class="form-label semibold" for="exampleInput">CIN</label> <input type="text" name="cin_number" class="form-control" id="exampleInput" value="<?php echo e(!empty($organisation) ? $organisation->cin_number : ''); ?>"> </fieldset> </div> </div> <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 </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/settings.blade.php ENDPATH**/ ?>