feat: user profile address - #102
Merged
Merged
Conversation
Contributor
There was a problem hiding this comment.
Pull Request Overview
This PR introduces user profile address and information management capabilities by adding two new tabs to the UserProfile page. Users can now update their personal information (name, nickname, birthdate, social links) and address details (country, state, city, zip code) through dedicated UI sections.
Key changes:
- Added Information and Address tabs with form inputs and save actions to the UserProfile page
- Configured custom Login page class for both User and Partner panels
- Improved code formatting for better readability in multi-line callbacks and notification methods
Reviewed Changes
Copilot reviewed 3 out of 3 changed files in this pull request and generated 2 comments.
| File | Description |
|---|---|
| app/Providers/Filament/UserPanelProvider.php | Updated to use custom Login class instead of default login page |
| app/Providers/Filament/PartnerPanelProvider.php | Updated to use custom Login class instead of default login page |
| app-modules/user/src/Filament/User/Pages/UserProfile.php | Added Information and Address form sections with save methods, new state properties, and code formatting improvements |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
… additional fields
…to use English messages
…t-api into feat/user-profile-address
danielhe4rt
approved these changes
Nov 12, 2025
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This pull request introduces significant enhancements to the user profile management experience, including new sections for personal information and address details, as well as improvements in code clarity and customization. The main changes are grouped below:
User Profile Feature Expansion
UserProfilepage for "Information" and "Address", each with their own form sections, input fields, and save actions, allowing users to update personal and address details directly from their profile. (app-modules/user/src/Filament/User/Pages/UserProfile.php)informationData,addressData) and logic to initialize them from the authenticated user's related models. AddedsaveInformationandsaveAddressmethods to handle validation, persistence, and notifications for these new sections. (app-modules/user/src/Filament/User/Pages/UserProfile.php) [1] [2] [3]Panel Customization
PartnerPanelProviderandUserPanelProviderto use a customLoginpage instead of the default, enabling tailored authentication experiences for each panel. (app/Providers/Filament/PartnerPanelProvider.php,app/Providers/Filament/UserPanelProvider.php) [1] [2] [3] [4]Code Style and Readability Improvements
app-modules/user/src/Filament/User/Pages/UserProfile.php) [1] [2] [3] [4]These changes collectively enhance the user profile experience and maintainability of the codebase.