How can I make email field required in add user page (admin/people/create) ?

I tried this in form alter:

$form['mail'] = [
'#required' => TRUE,
];

and this as well

$form ['mail']['widget'][0]['value']['#required']=TRUE;

But didn't work, even when I dump($form), its not showing mail,

Please help me its urgent, I stuck from long time in this.

Comments

wombatbuddy’s picture

use Drupal\Core\Form\FormStateInterface;

/**
 * Implements hook_form_FORM_ID_alter().
 */
function YOUR_MODULE_form_user_register_form_alter(&$form, FormStateInterface $form_state, $form_id) {
  $form['account']['mail']['#required'] = TRUE;
}