['nickname',TextType::class,['label'=>_m('Nickname'),'required'=>true,'data'=>$profile->getNickname(),'help'=>_m('1-64 lowercase letters or numbers, no punctuation or spaces.')]],
['full_name',TextType::class,['label'=>_m('Full Name'),'required'=>false,'data'=>$profile->getFullname(),'help'=>_m('A full name is required, if empty it will be set to your nickname.')]],
['homepage',TextType::class,['label'=>_m('Homepage'),'required'=>false,'data'=>$profile->getHomepage(),'help'=>_m('URL of your homepage, blog, or profile on another site.')]],
['bio',TextareaType::class,['label'=>_m('Bio'),'required'=>false,'data'=>$profile->getBio(),'help'=>_m('Describe yourself and your interests.')]],
['location',TextType::class,['label'=>_m('Location'),'required'=>false,'data'=>$profile->getLocation(),'help'=>_m('Where you are, like "City, State (or Region), Country".')]],
['self_tags',TextType::class,['label'=>_m('Self Tags'),'required'=>false,'data'=>Formatting::toString($profile_tags,Formatting::SPLIT_BY_SPACE),'help'=>_m('Tags for yourself (letters, numbers, -, ., and _), comma- or space-separated.')]],
[_m('outgoing_email'),TextType::class,['help'=>'Change your current email.','label_format'=>'Email']],
[_m('password'),TextType::class,['help'=>'Change your current password.']],
[_m('emailnotifysub'),CheckboxType::class,['help'=>'Send me notices of new subscriptions through email.','label_format'=>'Notify subscriptions']],
[_m('emailnotifymsg'),CheckboxType::class,['help'=>'Send me email when someone sends me a private message.','label_format'=>'Notify private messages']],
[_m('emailnotifyattn'),CheckboxType::class,['help'=>'Send me email when someone sends me an "@-reply".','label_format'=>'Notify replies']],
[_m('emailnotifynudge'),CheckboxType::class,['help'=>'Allow friends to nudge me and send me an email.','label_format'=>'Allow nudges']],
[_m('emailnotifyfav'),CheckboxType::class,['help'=>'Send me email when someone adds my notice as a favorite.','label_format'=>'Notify favorites']],