One Hat Cyber Team
Your IP :
3.135.209.247
Server IP :
104.21.80.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
/
resources
/
views
/
View File Name :
changepassword.blade.php
@extends('layouts.master') @section('styles') @endsection @section('content') <div class="page-content"> <div class="container-fluid"> @if(session()->has('message')) <div class="alert alert-info alert-fill alert-close alert-dismissible fade in"> <strong>{{ session()->get('message') }}</strong> </div> @endif @if (count($errors) > 0) <div class = "alert alert-danger alert-fill alert-close alert-dismissible fade in"> <ul> @foreach ($errors->all() as $error) <li>{{ $error }}</li> @endforeach </ul> </div> @endif <section class="card"> <div class="row"> <div class="col-lg-6 p-t"> <h3 class="p-l">Change Password</h3> </div> </div> </section> <div class="box-typical box-typical-padding"> <form action="{{url('update-password')}}" method="post"> {!! csrf_field() !!} <div class="row"> <div class="col-lg-6"> <fieldset class="form-group"> <label class="form-label semibold" for="exampleInput">New Password</label> <input type="text" name="new_password" class="form-control" id="exampleInput"> </fieldset> </div> <div class="col-lg-6"> <fieldset class="form-group"> <label class="form-label semibold" for="exampleInputEmail1">Confirm New Password</label> <input type="text" name="confirm_password" class="form-control" id="exampleInputEmail1"> </fieldset> </div> </div><!--.row--> <div class="row m-t"> <div class="col-lg-12"> <button type="submit" name="update_password" class="btn btn-inline btn-success p-x-3 p-y">Change Password </button> </div> </div> </form> </div><!--.box-typical--> </div> </div> @endsection @section('scripts') @endsection