- Removed 'h-10 w-auto' from resources/views/components/application-logo.blade.php.
- This resolves CSS conflicts where default classes were persisting alongside custom width/height classes (e.g., 'h-10 w-auto h-auto w-32').
- All logo instances now fully respect the classes passed to them.
- Updated welcome.blade.php (homepage) to use 'w-32 h-auto' (128px width).
- Updated guest.blade.php (login/register) to use 'w-48 h-auto' (192px width).
- This addresses the user's feedback that the logo width was not constrained, causing it to appear too large.
- Reduced the height of the application logo on guest pages (login/register) from h-20 (80px) to h-12 (48px).
- This addresses the user's feedback that the logo was too large on pre-login pages.
- Wrapped Admin/Management navigation links in @role and @can permission checks.
- Restricted dashboard 'Management/Ops' and 'Finance Application' widgets to authorized roles.
- Applied granular visibility control to 'To-do' buckets on the dashboard for Applicant, Cashier, Accountant, and Chair.
- Created 'lang/zh_TW.json' with comprehensive translations for UI elements, forms, navigation, and messages.
- Updated 'config/app.php' to set locale to 'zh_TW' and timezone to 'Asia/Taipei'.
- This ensures the entire application interface is presented in Traditional Chinese.
- Added a 'Create Member Profile' page for existing users who don't have a member record.
- Updated MemberDashboardController to redirect to profile creation instead of aborting 404.
- Added 'member.profile.create' and 'member.profile.store' routes.
- Update invalid 'finance.show' route to the correct 'admin.finance.show' in email templates.
- This prevents broken links in approval, rejection, and status update emails.
- Grouped all Admin links into a 'Management' dropdown menu on desktop to prevent navbar overflow.
- Added a 'Management' section header to the mobile menu for better organization.
- Ensured the 'Management' dropdown trigger visually matches other nav links and indicates active state.
- Set default value for 'active' prop to false in nav-link.blade.php and responsive-nav-link.blade.php.
- This resolves the ErrorException when the prop is not explicitly passed.
- Add 'Skip to main content' links to App and Guest layouts.
- Add aria-current to navigation links for active page indication.
- Add aria-label to mobile menu button.
- Include pending UI updates for Dashboard and Welcome pages with improved structure.