User Profile

The user is able to change update his profile information.


The profile can be accessed by a logged in user by clicking User Profile from the sidebar. The user can add information like phone number, location, description or change the name and email

The App/Http/Livewire/ExampleLaravel/UserProfile.php handles the user's profile information.

              
                public function update()
                {
                    $this->validate();
                    $this->user->save();
                    return back()->withStatus('Profile successfully updated.');

                 }