всем, мне нужно сохранить старый пароль пользователя в old_password
в таблице пользователей
Так я и сделал
protected function updatePassword( $user, Request $request)
{
dd($user);
$user = User::find( $user->id); // This will find the right user
$user->old_password = $user->password; // This will save the old password
$user->password = $request->password;
$user->save();
}
Мой маршрут
Route::post('/password/reset/{token}', 'Auth\ResetPasswordController@old_passwords');
но ничегобывает любая помощь