diff --git a/app/Http/Controllers/WikiController.php b/app/Http/Controllers/WikiController.php index bc09df2f0..432309bd4 100644 --- a/app/Http/Controllers/WikiController.php +++ b/app/Http/Controllers/WikiController.php @@ -64,7 +64,7 @@ class WikiController extends Controller $member->groupname = $gname[0]->gname; $member->save(); //Return to the dashboard view - return redirect('/dashboard')->with('success', 'Registration successful.'); + return redirect('/dashboard')->with('success', 'Registration successful.
Your username is: ' . $name); } public function displayChangePassword() { @@ -103,6 +103,6 @@ class WikiController extends Controller ->where('login', $name) ->update(['pass' => $password]); - return redirect('/dashboard')->with('success', 'Password changed successfully.'); + return redirect('/dashboard')->with('success', 'Password changed successfully.
Your username is: ' . $name); } }