/** * Makes the button a reset button * * @return $this * @static */ public static function reset() { return \Bootstrapper\Button::reset(); }
/** * Create a HTML reset input element. * Overriding the default input reset button from Laravel\Form * * @param string $value text value of button * @param array $attributes array of attributes for button * @param bool $hasDropdown button has dropdown * * @return string */ public static function reset($value = null, $attributes = array(), $hasDropdown = false) { return Button::reset($value, $attributes, $hasDropdown); }