# bbp-core/2.4.3/templates/form-user-edit.php

Forumax – AI Powered Advanced Community Forum Plugin, version 2.4.3. 163 lines.

- Page: https://pluginprobe.com/plugins/bbp-core/2.4.3/code/templates/form-user-edit.php
- Raw: https://pluginprobe.com/plugins/bbp-core/2.4.3/raw/templates/form-user-edit.php
- Modified: 2026-01-28T15:54:38+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/bbp-core/2.4.3/code/templates/form-user-edit.php#L10-L20`.

```php
<?php

/**
 * bbPress User Profile Edit Part
 *
 * @package bbPress
 * @subpackage Theme
 */

// Exit if accessed directly
defined('ABSPATH') || exit;
?>

<form id="bbp-your-profile" class="bbp-your-profile" method="post" enctype="multipart/form-data">

    <?php do_action('bbp_user_edit_before'); ?>

    <fieldset class="bbp-form">
        <legend><?php esc_html_e('Name', 'forumax') ?></legend>

        <div class="frmx-row frmx-g-3 frmx-edit-user">

            <?php do_action('bbp_user_edit_before_name'); ?>

            <div class="frmx-col-lg-6">
                <label for="first_name" class="frmx-mb-2"><?php esc_html_e('First Name', 'forumax') ?></label>
                <input type="text" name="first_name" id="first_name"
                    value="<?php bbp_displayed_user_field('first_name', 'edit'); ?>"
                    placeholder="<?php esc_attr_e('Enter First Name', 'forumax'); ?>" class="regular-text" />
            </div>

            <div class="frmx-col-lg-6">
                <label for="last_name" class="frmx-mb-2"><?php esc_html_e('Last Name', 'forumax') ?></label>
                <input type="text" name="last_name" id="last_name"
                    value="<?php bbp_displayed_user_field('last_name', 'edit'); ?>"
                    placeholder="<?php esc_attr_e('Enter Last Name', 'forumax'); ?>" class="regular-text" />
            </div>

            <div class="frmx-col-lg-6">
                <label for="nickname" class="frmx-mb-2"><?php esc_html_e('Nickname', 'forumax'); ?></label>
                <input type="text" name="nickname" id="nickname"
                    value="<?php bbp_displayed_user_field('nickname', 'edit'); ?>"
                    placeholder="<?php esc_attr_e('Enter Nickname', 'forumax'); ?>" class="regular-text" />
            </div>

            <div class="frmx-col-lg-6">
                <label for="display_name" class="frmx-mb-2">
                    <?php esc_html_e('Display Name', 'forumax') ?>
                </label>
                <?php bbp_edit_user_display_name(); ?>
            </div>

            <?php do_action('bbp_user_edit_after_name'); ?>


            <?php do_action('bbp_user_edit_before_contact'); ?>

            <div class="frmx-col-lg-12">
                <label for="url" class="frmx-mb-2"><?php esc_html_e('Website', 'forumax') ?></label>
                <input type="text" name="url" id="url" value="<?php bbp_displayed_user_field('user_url', 'edit'); ?>"
                    placeholder="<?php esc_attr_e('Enter Website URL', 'forumax'); ?>" maxlength="200"
                    class="regular-text code" />
            </div>

            <?php foreach (bbp_edit_user_contact_methods() as $name => $desc): ?>

                <div>
                    <label for="<?php echo esc_attr($name); ?>"
                        class="frmx-mb-2"><?php echo apply_filters('user_' . $name . '_label', $desc); ?></label>
                    <input type="text" name="<?php echo esc_attr($name); ?>" id="<?php echo esc_attr($name); ?>"
                        value="<?php bbp_displayed_user_field($name, 'edit'); ?>" class="regular-text" />
                </div>

            <?php endforeach; ?>

            <?php do_action('bbp_user_edit_after_contact'); ?>

            <?php do_action('bbp_user_edit_before_about'); ?>
            <div class="frmx-col-lg-12">
                <label for="description" class="frmx-mb-2"><?php esc_html_e('Biographical Info', 'forumax') ?></label>
                <textarea name="description" id="description" rows="5" cols="30" class="regular-text"
                    value="<?php bbp_displayed_user_field('description', 'edit'); ?>"
                    placeholder="<?php esc_attr_e('Write about yourself', 'forumax'); ?>"></textarea>
            </div>

            <?php do_action('bbp_user_edit_after_about'); ?>

        </div>

    </fieldset>

    <fieldset class="bbp-form">

        <legend><?php esc_html_e('Account', 'forumax') ?></legend>

        <?php do_action('bbp_user_edit_before_account'); ?>

        <div class="frmx-row frmx-gap-3">
            <div class="frmx-col-lg-6">
                <label for="user_login" class="frmx-mb-2"><?php esc_html_e('Username', 'forumax'); ?></label>
                <input type="text" name="user_login" id="user_login"
                    value="<?php bbp_displayed_user_field('user_login', 'edit'); ?>" maxlength="100"
                    class="regular-text" disabled="disabled" />
            </div>

            <div class="frmx-col-lg-6">
                <label for="email" class="frmx-mb-2"><?php esc_html_e('Email', 'forumax'); ?></label>
                <input type="text" name="email" id="email"
                    value="<?php bbp_displayed_user_field('user_email', 'edit'); ?>" maxlength="100"
                    class="regular-text" autocomplete="off" />
            </div>
        </div>

        <?php bbp_get_template_part('form', 'user-passwords'); ?>

        <div>
            <label for="locale" class="frmx-mb-2"><?php esc_html_e('Language', 'forumax') ?></label>
            <?php bbp_edit_user_language(); ?>
        </div>

        <?php do_action('bbp_user_edit_after_account'); ?>

    </fieldset>

    <?php if (!bbp_is_user_home_edit() && current_user_can('promote_user', bbp_get_displayed_user_id())): ?>

        <fieldset class="bbp-form">
            <legend><?php esc_html_e('User Role', 'forumax'); ?></legend>

            <?php do_action('bbp_user_edit_before_role'); ?>

            <?php if (is_multisite() && is_super_admin() && current_user_can('manage_network_options')): ?>

                <div>
                    <label for="super_admin" class="frmx-mb-2"><?php esc_html_e('Network Role', 'forumax'); ?></label>
                    <label>
                        <input class="checkbox" type="checkbox" id="super_admin" name="super_admin" <?php checked(is_super_admin(bbp_get_displayed_user_id())); ?> />
                        <?php esc_html_e('Grant this user super admin privileges for the Network.', 'forumax'); ?>
                    </label>
                </div>

            <?php endif; ?>

            <?php bbp_get_template_part('form', 'user-roles'); ?>

            <?php do_action('bbp_user_edit_after_role'); ?>

        </fieldset>

    <?php endif; ?>

    <?php do_action('bbp_user_edit_after'); ?>

    <fieldset class="submit">
        <div>
            <?php bbp_edit_user_form_fields(); ?>
            <button type="submit" id="bbp_user_edit_submit" name="bbp_user_edit_submit"
                class="button submit user-submit fill-brand">
                <?php bbp_is_user_home_edit() ? esc_html_e('Update Profile', 'forumax') : esc_html_e('Update User', 'forumax'); ?>
            </button>
        </div>
    </fieldset>
</form>
```
