⚝
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 :
e09bea723924d91d4c8980951b08e0a35ba01d74.php
<?php $selLang = \App\Models\Language::where('code', request()->input('language'))->first(); ?> <?php if(!empty($selLang) && $selLang->rtl == 1): ?> <?php $__env->startSection('styles'); ?> <style> form:not(.modal-form) input, form:not(.modal-form) textarea, form:not(.modal-form) select, select[name='language'] { direction: rtl; } form:not(.modal-form) .note-editor.note-frame .note-editing-area .note-editable { direction: rtl; text-align: right; } </style> <?php $__env->stopSection(); ?> <?php endif; ?> <?php $__env->startSection('content'); ?> <div class="page-header"> <h4 class="page-title"><?php echo e($keywords['Edit_Profile'] ?? 'Edit Profile'); ?></h4> <ul class="breadcrumbs"> <li class="nav-home"> <a href="<?php echo e(route('user-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['Edit_Profile'] ?? 'Edit Profile'); ?></a> </li> </ul> </div> <div class="row"> <div class="col-md-12"> <div class="card"> <div class="card-header"> <div class="card-title d-inline-block"><?php echo e($keywords['Update_Profile'] ?? 'Update Profile'); ?></div> </div> <div class="card-body pt-5 pb-5"> <div class="row"> <div class="col-lg-12"> <form id="ajaxForm" class="" action="<?php echo e(route('user-profile-update')); ?>" method="post" enctype="multipart/form-data"> <?php echo csrf_field(); ?> <div class="row"> <div class="col-lg-4"> <div class="form-group"> <div class="col-12 mb-2"> <label for="image"><strong><?php echo e($keywords['Profile_Image'] ?? 'Profile Image'); ?> **</strong></label> </div> <div class="col-md-12 showImage mb-3"> <img src="<?php echo e($user->photo ? asset('assets/front/img/user/' . $user->photo) : asset('assets/admin/img/noimage.jpg')); ?>" alt="..." class="img-thumbnail" width="170"> </div> <input type="file" name="photo" id="image" class="form-control"> <p id="errphoto" class="mb-0 text-danger em"></p> </div> </div> </div> <div class="row"> <div class="col-lg-3"> <div class="form-group"> <label for=""><?php echo e($keywords['First_Name'] ?? 'First Name'); ?> **</label> <input type="text" class="form-control" name="first_name" value="<?php echo e($user->first_name); ?>" placeholder="<?php echo e($keywords['Enter_first_name'] ?? 'Enter first name'); ?>"> <p id="errfirst_name" class="mb-0 text-danger em"></p> </div> </div> <div class="col-lg-3"> <div class="form-group"> <label for=""><?php echo e($keywords['Last_Name'] ?? 'Last Name'); ?> **</label> <input type="text" class="form-control" name="last_name" value="<?php echo e($user->last_name); ?>" placeholder="<?php echo e($keywords['Enter_Last_Name'] ?? 'Enter Last Name'); ?>"> <p id="errlast_name" class="mb-0 text-danger em"></p> </div> </div> <div class="col-lg-3"> <div class="form-group"> <label for=""><?php echo e($keywords['User_name'] ?? 'User Name'); ?> **</label> <input type="text" class="form-control" name="username" value="<?php echo e($user->username); ?>" placeholder="<?php echo e($keywords['Enter_username'] ?? 'Enter username'); ?>"> <p id="errusername" class="mb-0 text-danger em"></p> </div> </div> <div class="col-lg-3"> <div class="form-group"> <label for=""><?php echo e($keywords['Phone'] ?? 'Phone'); ?> **</label> <input type="text" class="form-control" name="phone" value="<?php echo e($user->phone); ?>" placeholder="<?php echo e($keywords['Enter_phone'] ?? 'Enter phone'); ?>"> <p id="errphone" class="mb-0 text-danger em"></p> </div> </div> <div class="col-lg-3"> <div class="form-group"> <label for=""><?php echo e($keywords['City'] ?? 'City'); ?> **</label> <input type="text" class="form-control" name="city" rows="5" value="<?php echo e($user->city); ?>"> <p id="errcity" class="mb-0 text-danger em"></p> </div> </div> <div class="col-lg-3"> <div class="form-group"> <label for=""><?php echo e($keywords['State'] ?? 'State'); ?> **</label> <input type="text" class="form-control" name="state" rows="5" value="<?php echo e($user->state); ?>"> <p id="errstate" class="mb-0 text-danger em"></p> </div> </div> <div class="col-lg-3"> <div class="form-group"> <label for=""><?php echo e($keywords['Country'] ?? 'Country'); ?> **</label> <input type="text" class="form-control" name="country" rows="5" value="<?php echo e($user->country); ?>"> <p id="errcountry" class="mb-0 text-danger em"></p> </div> </div> <div class="col-lg-3"> <div class="form-group"> <label for=""><?php echo e($keywords['Address'] ?? 'Address'); ?> **</label> <textarea type="text" class="form-control" name="address" rows="5"><?php echo e($user->address); ?></textarea> <p id="erraddress" class="mb-0 text-danger em"></p> </div> </div> </div> </form> </div> </div> </div> <div class="card-footer"> <div class="form"> <div class="form-group from-show-notify row"> <div class="col-12 text-center"> <button type="submit" data-form="ajaxForm" id="" class="submitBtn btn btn-success"><?php echo e($keywords['Update'] ?? 'Update'); ?></button> </div> </div> </div> </div> </div> </div> </div> <?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/edit-profile.blade.php ENDPATH**/ ?>