Update AdminUserController.php

pull/6691/head
Shlee 1 month ago committed by GitHub
parent 1d72f1b437
commit c2044f77cf
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -92,6 +92,10 @@ trait AdminUserController
public function userEditSubmit(Request $request, $id)
{
$this->validate($request, [
'website' => 'nullable|url|max:120',
]);
$user = User::findOrFail($id);
$profile = $user->profile;
$changed = false;

Loading…
Cancel
Save