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 or adding laravel-user-profile in the url. The user can add information like phone number, location, description or change the name and email.

The App\Http\Livewire\UserProfile handles the user's profile information.

              
                public function save() {
                    $this->validate();
                    $this->user->save();
                    $this->showSuccesNotification = true;
                }