components([ Section::make('Profile Information') ->description('Update your account\'s profile information and email address.') ->components([ TextInput::make('name') ->label('Name') ->required() ->maxLength(255) ->placeholder('Enter your full name'), $this->getEmailFormComponent(), ]), Section::make('Update Password') ->description('Ensure your account is using a long, random password to stay secure.') ->components([ $this->getPasswordFormComponent(), $this->getPasswordConfirmationFormComponent(), ]), ]); } }