/**
* Create a password input field.
*
* @param string $name The name of the password input
* @param array $attributes The attributes of the input
* @return string
* @param string $name
* @param array $options
* @return string
* @static
*/
public static function password($name, $attributes = array())
{
return \Bootstrapper\Form::password($name, $attributes);
}