0
以下はパスワードを変更するためのコードです。"パスワードが正常に変更されました"というメッセージを印刷するにはどうすればよいですか?
public function passwordupdate(Request $request){
$user=user::find(Auth::user()->id);
$validator=Validator::make($request->all(), [
'password' => 'required|min:6|max:14',
'password_confirmation' => 'required|min:6|max:14',
]);
if($validator->fails()){
return redirect()->back()->withErrors(['password'=>'Please check the password you given']);
}else if (!Hash::check($request->cpassword, Auth::user()->password)) {
return redirect()->back()->withErrors(['password'=>'Error!!Please check the current password you given']);
}
else{
$user->password=bcrypt($request->password);
$user->save();
return redirect()->back();
}
}