Add admin form to view and edit users

This commit is contained in:
Alex Cabal 2024-11-23 13:13:31 -06:00
parent 32607fb220
commit 8ad3291a35
35 changed files with 902 additions and 72 deletions

View file

@ -0,0 +1,7 @@
<?
namespace Exceptions;
class InvalidUserException extends ValidationException{
/** @var string $message */
protected $message = 'User is invalid.';
}