diff --git a/src/Auth/UserRepository.php b/src/Auth/UserRepository.php index 4a44c099e0..16a01d057b 100644 --- a/src/Auth/UserRepository.php +++ b/src/Auth/UserRepository.php @@ -64,6 +64,7 @@ public function blueprint() $blueprint = Blueprint::find('user') ?? Blueprint::makeFromFields([ 'name' => ['type' => 'text', 'display' => __('Name'), 'listable' => true], + 'email' => ['type' => 'text', 'input_type' => 'email', 'display' => __('Email Address'), 'listable' => true], ])->setHandle('user'); $blueprint->ensureField('email', ['type' => 'text', 'input_type' => 'email', 'display' => __('Email Address'), 'listable' => true]);