⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.177
Server IP:
50.6.168.112
Server:
Linux server-617809.webnetzimbabwe.com 5.14.0-570.25.1.el9_6.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Jul 9 04:57:09 EDT 2025 x86_64
Server Software:
Apache
PHP Version:
8.4.10
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
home
/
ctaacademy
/
www
/
app
/
Http
/
Requests
/
Frontend
/
View File Name :
StudentPasswordUpdateRequest.php
|string> */ public function rules(): array { return [ 'current_password' => ['required', 'string', 'max:255', 'current_password'], 'password' => ['required', 'string', 'max:255', 'confirmed'], ]; } function messages() { return [ 'current_password.required' => __('The current password field is required'), 'current_password.string' => __('The current password must be a string'), 'current_password.max' => __('The current password may not be greater than 255 characters.'), 'current_password.current_password' => __('The current password is incorrect.'), 'password.required' => __('The password field is required'), 'password.string' => __('The password must be a string'), 'password.max' => __('The password may not be greater than 255 characters.'), 'password.confirmed' => __('The password confirmation does not match.'), ]; } }