/** * Create a form input field. * * @param string $type * @param string $name * @param string $value * @param array $options * @return string * @static */ public static function input($type, $name, $value = null, $options = array()) { //Method inherited from \Illuminate\Html\FormBuilder return \Bootstrapper\Form::input($type, $name, $value, $options); }