Background (please complete the following information):
Describe the bug
We cannot search for a server owner using first name, last name or username, it only works using the email.



To Reproduce
Steps to reproduce the behavior:
Expected behavior
I should be able to type the user's username or first name to find him.
Looks to be a pretty simple fix. It's just adding some additional fields into the allowedFilters array:
From: ['email']
To: ['username', 'email', 'name_first', 'name_last']
https://github.com/pterodactyl/panel/blob/develop/app/Http/Controllers/Admin/UserController.php#L188
This is intentional for the time being and will be addressed by the admin area re-write.
Most helpful comment
Looks to be a pretty simple fix. It's just adding some additional fields into the
allowedFiltersarray:From:
['email']To:
['username', 'email', 'name_first', 'name_last']https://github.com/pterodactyl/panel/blob/develop/app/Http/Controllers/Admin/UserController.php#L188