> ## 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 name, email, avatar, and password in 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 and add an avatar to your admin account.

## Update your personal information

Go to the **Settings** tab to update your personal information. After making your changes, click **Save changes**.

<Frame>
  <img src="https://mintcdn.com/memberful/ulXPhmMXhAUN4Kwo/images/manage-your-account/update-your-personal-information/manage-your-account.png?fit=max&auto=format&n=ulXPhmMXhAUN4Kwo&q=85&s=124083ef822bb4cc9bd14d9f15d9817e" alt="Manage Your Account" width="1440" height="1529" data-path="images/manage-your-account/update-your-personal-information/manage-your-account.png" />
</Frame>

## Add an avatar to your admin account

Adding an avatar helps personalize your admin account.

<Steps>
  <Step title="Open your avatar settings">
    Go to the **Settings** tab.
  </Step>

  <Step title="Choose an image">
    Click **Choose file**, then select a PNG or JPEG image up to 5 MB. Memberful automatically crops the image to a circle.

    <Frame>
      <img src="https://mintcdn.com/memberful/ulXPhmMXhAUN4Kwo/images/manage-your-account/update-your-personal-information/add-avatar.png?fit=max&auto=format&n=ulXPhmMXhAUN4Kwo&q=85&s=660d35a63a76dd45362b13941f8ac826" alt="Add Avatar" width="1440" height="1529" data-path="images/manage-your-account/update-your-personal-information/add-avatar.png" />
    </Frame>
  </Step>

  <Step title="Save your avatar">
    Click **Save changes**.
  </Step>
</Steps>

If you don't upload a profile picture, your avatar displays your initials instead.

<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.",
}}
/>
