email() public method

public email ( string $name, string | null $value = null, array $attributes = [] ) : string
$name string The name of the email input
$value string | null The default value of the input
$attributes array The attributes of the email input
return string
Example #1
0
 /**
  * Create an e-mail input field.
  *
  * @param string $name The name of the email input
  * @param string|null $value The default value of the input
  * @param array $attributes The attributes of the email input
  * @return string 
  * @param string $name
  * @param string $value
  * @param array $options
  * @return string 
  * @static 
  */
 public static function email($name, $value = null, $attributes = array())
 {
     return \Bootstrapper\Form::email($name, $value, $attributes);
 }