Example #1
0
 /**
  * Create a HTML image input element.
  *
  * @param string $url
  * @param string $name
  * @param array $attributes
  * @return string 
  * @static 
  */
 public static function image($url, $name = null, $attributes = array())
 {
     //Method inherited from \Illuminate\Html\FormBuilder
     return \Bootstrapper\Form::image($url, $name, $attributes);
 }