When you click on the button, validation does not work. I get an error in the console: change-password:1 Failed to load resource: the server responded with a status of 500 (Internal Server Error). Please help me figure out what's wrong.
I experienced some challenges debugging, and had the same error. Here's what I did to resolve error: attempt to read property on array error 500 1. BELOW: Add this to AdminController.php use App\Libraries\Hash; 2. BELOW: //Send email notification to user(admin) email address $mail_data = array( 'user'=>$user_info, 'new_password'=>$request->getVar('new_password') I hope this helps - Jeremiah
When you click on the button, validation does not work. I get an error in the console: change-password:1
Failed to load resource: the server responded with a status of 500 (Internal Server Error). Please help me figure out what's wrong.
I experienced some challenges debugging, and had the same error. Here's what I did to resolve error: attempt to read property on array error 500
1. BELOW: Add this to AdminController.php
use App\Libraries\Hash;
2. BELOW:
//Send email notification to user(admin) email address
$mail_data = array(
'user'=>$user_info,
'new_password'=>$request->getVar('new_password')
I hope this helps - Jeremiah
@@JeremiahJ Thank you...