I am overriding the woocommerce admin new order template. I am looking to add the customer's username and if possible password as well. Can anyone please help me.
<?php $user_info = get_userdata(1);
echo $user_info->user_login;?>
I am currently using this code but it's not working as intended.