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
birthday, gender, phone number, location, language or skills.
The App\Http\Livewire\LaravelExamples\UserProfile
handles the user's profile information.
public function save() {
$this->validate();
$this->user->save();
$this->showSuccesNotification = true;
}