Example #1
0
 /**
  * Create a HTML reset input element.
  *
  * @param string $value
  * @param array $attributes
  * @return string 
  * @static 
  */
 public static function reset($value, $attributes = array())
 {
     //Method inherited from \Illuminate\Html\FormBuilder
     return \Bootstrapper\Form::reset($value, $attributes);
 }
 public function testResetButton()
 {
     $html = Form::reset('foo', $this->testAttributes);
     $matcher = $this->createButtonMatcher('reset');
     $this->assertTag($matcher, $html);
 }