> ## Documentation Index
> Fetch the complete documentation index at: https://memberful.com/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# Update your personal information

> Update your personal information as a Memberful account owner or staff member, including your name, email address, and password from the Memberful dashboard.

export const RelatedDocs = ({link1, link2, link3, link4, link5, link6, link7, link8, link9, link10, className = ""}) => {
  const links = [link1, link2, link3, link4, link5, link6, link7, link8, link9, link10].filter(Boolean);
  if (!links.length) return null;
  return <section className={`related-docs border dark:border-gray-700 rounded-2xl px-6 py-4 mt-6 ${className}`}>
      <p className="mb-2 font-medium">
        <strong>Related help docs:</strong>
      </p>
      <ul className="space-y-1 mb-1 mt-1">
        {links.map((link, index) => <li key={index}>
            <a href={link.url}>{link.label}</a>
          </li>)}
      </ul>
    </section>;
};

In this help article, we'll explore how to update your personal information.

Go to the **Settings** tab to update your personal information.

<Frame>
  <img src="https://mintcdn.com/memberful/xXjwqCUtMkelgT1Y/images/manage-your-account/update-your-personal-information/tab-manage-account.png?fit=max&auto=format&n=xXjwqCUtMkelgT1Y&q=85&s=5fe1a1d13a01f392c553c987d4fc9e62" alt="Update your personal information" width="1440" height="744" data-path="images/manage-your-account/update-your-personal-information/tab-manage-account.png" />
</Frame>

<RelatedDocs
  link1={{
url: "/account-management/account-settings/update-your-site-and-account-settings/",
label: "Update your website and account settings.",
}}
  link2={{
url: "/manage-your-account/email-notification-settings/",
label: "Manage your email notification settings.",
}}
/>
