Use laravel default error pages

This commit is contained in:
DariusIII
2023-04-09 12:40:37 +02:00
parent 85fa242597
commit 79cc81cecb
17 changed files with 634 additions and 192 deletions
+1 -1
View File
@@ -283,6 +283,6 @@ class ProfileController extends BasePageController
return redirect()->to('profile');
}
return view('errors.badboy')->with('warning', 'Dont try to delete another user account!');
return view('errors.503')->with('warning', 'Dont try to delete another user account!');
}
}