diff --git a/app/Http/Controllers/ProfileController.php b/app/Http/Controllers/ProfileController.php index 136bd7e..2ed75cc 100644 --- a/app/Http/Controllers/ProfileController.php +++ b/app/Http/Controllers/ProfileController.php @@ -29,6 +29,7 @@ class ProfileController extends Controller $user = $request->user(); $user->username = $data['username']; + $user->character_id = $data['character_id']; $user->password = Hash::make($data['password']); $user->save();