Example #1
0
 /**
  * Create a tel input field.
  *
  * @param string $name
  * @param string $value
  * @param array $options
  * @return string 
  * @static 
  */
 public static function tel($name, $value = null, $options = array())
 {
     //Method inherited from \Collective\Html\FormBuilder
     return \App\Services\FormBuilderCollective::tel($name, $value, $options);
 }