⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.19
Server IP:
178.33.27.10
Server:
Linux cpanel.dev-unit.com 3.10.0-1160.108.1.el7.x86_64 #1 SMP Thu Jan 25 16:17:31 UTC 2024 x86_64
Server Software:
Apache/2.4.57 (Unix) OpenSSL/1.0.2k-fips
PHP Version:
8.2.11
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
home
/
id
/
public_html
/
storage
/
framework
/
views
/
View File Name :
3cc292d3b44b12ce3b89a0dee63c12fe8c5e202b.php
<?php $__env->startSection('content'); ?> <div class="page-header"> <h4 class="page-title"><?php echo e($keywords['Customer_Details'] ?? __('Customer Details')); ?></h4> <ul class="breadcrumbs"> <li class="nav-home"> <a href="<?php echo e(route('admin.dashboard')); ?>"> <i class="flaticon-home"></i> </a> </li> <li class="separator"> <i class="flaticon-right-arrow"></i> </li> <li class="nav-item"> <a href="#"><?php echo e($keywords['Customers'] ?? __('Customers')); ?></a> </li> <li class="separator"> <i class="flaticon-right-arrow"></i> </li> <li class="nav-item"> <a href="#"><?php echo e($keywords['Customer_Details'] ?? __('Customer Details')); ?></a> </li> </ul> </div> <div class="row"> <div class="col-md-3"> <div class="card"> <div class="card-body text-center p-4"> <img src="<?php echo e(!empty($user->image) ? asset('assets/user/img/users/' . $user->image) : asset('assets/user/img/profile.jpg')); ?>" alt="" width="100%"> </div> </div> </div> <div class="col-md-9"> <div class="card"> <div class="card-header"> <a href="<?php echo e(route('user.register-user', ['language' => request('language')])); ?>" class="btn float-right btn-primary btn-sm"><?php echo e($keywords['Back'] ?? __('Back')); ?></a> <h4 class="card-title"><?php echo e($keywords['Customer_Details'] ?? __('Customer Details')); ?></h4> </div> <div class="card-body"> <div class="row mb-3"> <div class="col-lg-6"> <strong><?php echo e($keywords['User_name'] ?? __('Username')); ?>:</strong> </div> <div class="col-lg-6"> <?php echo e($user->username ?? '-'); ?> </div> </div> <div class="row mb-3"> <div class="col-lg-6"> <strong><?php echo e($keywords['First_Name'] ?? __('First Name')); ?>:</strong> </div> <div class="col-lg-6"> <?php echo e($user->first_name ?? '-'); ?> </div> </div> <div class="row mb-3"> <div class="col-lg-6"> <strong><?php echo e($keywords['Last_Name'] ?? __('Last Name')); ?>:</strong> </div> <div class="col-lg-6"> <?php echo e($user->last_name ?? '-'); ?> </div> </div> <div class="row mb-3"> <div class="col-lg-6"> <strong><?php echo e($keywords['Email'] ?? __('Email')); ?>:</strong> </div> <div class="col-lg-6"> <?php echo e($user->email ?? '-'); ?> </div> </div> <div class="row mb-3"> <div class="col-lg-6"> <strong><?php echo e($keywords['Phone'] ?? __('Phone')); ?>:</strong> </div> <div class="col-lg-6"> <?php echo e($user->phone ?? '-'); ?> </div> </div> <div class="row mb-3"> <div class="col-lg-6"> <strong><?php echo e($keywords['City'] ?? __('City')); ?>:</strong> </div> <div class="col-lg-6"> <?php echo e($user->city ?? '-'); ?> </div> </div> <div class="row mb-3"> <div class="col-lg-6"> <strong><?php echo e($keywords['State'] ?? __('State')); ?>:</strong> </div> <div class="col-lg-6"> <?php echo e($user->state ?? '-'); ?> </div> </div> <div class="row mb-3"> <div class="col-lg-6"> <strong><?php echo e($keywords['Country'] ?? __('Country')); ?>:</strong> </div> <div class="col-lg-6"> <?php echo e($user->country); ?> </div> </div> <div class="row mb-3"> <div class="col-lg-6"> <strong><?php echo e($keywords['Address'] ?? __('Address')); ?>:</strong> </div> <div class="col-lg-6"> <?php echo e($user->address); ?> </div> </div> <div class="row mb-3"> <div class="col-lg-6"> <strong><?php echo e($keywords['Email_Status'] ?? __('Email Status')); ?>:</strong> </div> <div class="col-lg-6"> <form id="emailForm<?php echo e($user->id); ?>" class="d-inline-block" action="<?php echo e(route('register.customer.email')); ?>" method="post"> <?php echo csrf_field(); ?> <select class="form-control form-control-sm <?php echo e($user->email_verified_at ? 'bg-success' : 'bg-danger'); ?>" name="email_verified" onchange="document.getElementById('emailForm<?php echo e($user->id); ?>').submit();"> <option value="1" <?php echo e($user->email_verified_at != null ? 'selected' : ''); ?>> <?php echo e($keywords['Verified'] ?? __('Verified')); ?></option> <option value="2" <?php echo e($user->email_verified_at == null ? 'selected' : ''); ?>> <?php echo e($keywords['Unverified'] ?? __('Unverified')); ?></option> </select> <input type="hidden" name="user_id" value="<?php echo e($user->id); ?>"> </form> </div> </div> <div class="row mb-3"> <div class="col-lg-6"> <strong><?php echo e($keywords['Account_Status'] ?? __('Account Status')); ?></strong> </div> <div class="col-lg-6"> <form id="userFrom<?php echo e($user->id); ?>" class="d-inline-block" action="<?php echo e(route('user.customer.ban')); ?>" method="post"> <?php echo csrf_field(); ?> <select class="form-control form-control-sm <?php echo e($user->status == 1 ? 'bg-success' : 'bg-danger'); ?>" name="status" onchange="document.getElementById('userFrom<?php echo e($user->id); ?>').submit();"> <option value="1" <?php echo e($user->status == 1 ? 'selected' : ''); ?>> <?php echo e($keywords['Active'] ?? __('Active')); ?></option> <option value="0" <?php echo e($user->status == 0 ? 'selected' : ''); ?>> <?php echo e($keywords['Deactive'] ?? __('Deactive')); ?></option> </select> <input type="hidden" name="user_id" value="<?php echo e($user->id); ?>"> </form> </div> </div> </div> </div> </div> </div> <?php $__env->stopSection(); ?> <?php $__env->startSection('scripts'); ?> <script> "use strict"; const currUrl = "<?php echo e(url()->current()); ?>" const mainURL = "<?php echo e(url('/')); ?>"; </script> <script type="text/javascript" src="<?php echo e(asset('assets/user/dashboard/js/post.js')); ?>"></script> <?php $__env->stopSection(); ?> <?php echo $__env->make('user.layout', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?><?php /**PATH /home/id/public_html/resources/views/user/register_customer/details.blade.php ENDPATH**/ ?>