Server IP : 66.29.132.124 / Your IP : 3.147.60.193 Web Server : LiteSpeed System : Linux business141.web-hosting.com 4.18.0-553.lve.el8.x86_64 #1 SMP Mon May 27 15:27:34 UTC 2024 x86_64 User : wavevlvu ( 1524) PHP Version : 7.4.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/wavevlvu/book24.ng/modules/User/Views/admin/ |
Upload File : |
@extends('admin.layouts.app') @section('content') <form action="{{route('user.admin.changepass',['id'=>$row->id])}}" method="post"> @csrf <div class="container"> <div class="d-flex justify-content-between mb20"> <div class=""> <h1 class="title-bar">{{$row->id ? 'Change Password: '.$row->getDisplayName() : 'Add new user'}}</h1> </div> </div> @include('admin.message') <div class="row"> <div class="col-md-3"></div> <div class="col-md-6"> <div class="panel"> <div class="panel-title"> @if($row->id) <strong class="">{{ __('Change Password')}}</strong> @else <strong class="">{{ __('Password')}}</strong> @endif </div> <div class="panel-body"> @if($row->id and $row->id != $currentUser->id and !$currentUser->hasPermissionTo('user_update') ) <div class="form-group"> <label>{{ __('Old Password')}}</label> <input type="password" value="" placeholder="{{ __('Old Password')}}" name="old_password" class="form-control" > </div> @endif <div class="form-group"> <label>{{ __('New password')}}</label> <input type="password" value="" placeholder="{{ __('Password')}}" name="password" class="form-control"> </div> <div class="form-group"> <label>{{ __('Re-Password')}}</label> <input type="password" value="" placeholder="{{ __('Re-Password')}}" name="password_confirmation" class="form-control"> </div> <button type="submit" class="btn btn-primary"> {{ __('Change Password')}} </button> </div> </div> </div> </div> </div> </form> @endsection