validated(); if (!Hash::check( $validated['currentPassword'], Auth::user()->password) ) { return response()->json(['message' => __('errors.wrong_current_password')], 400); } if (!config('2fauth.config.isDemoApp') ) { $request->user()->update([ 'password' => bcrypt($validated['password']), ]); } return response()->json(['message' => __('auth.forms.password_successfully_changed')]); } }