Skip to content

Commit 43d13bb

Browse files
committed
Merge pull request #12 from nterms/master
.btn class added for submit, reset and button elements.
2 parents 7180d5a + 5e85616 commit 43d13bb

File tree

1 file changed

+17
-1
lines changed

1 file changed

+17
-1
lines changed

src/Manavo/BootstrapForms/FormBuilder.php

+17-1
Original file line numberDiff line numberDiff line change
@@ -107,6 +107,8 @@ public function input($type, $name, $value = null, $options = [])
107107
// Don't add form-control for some input types (like submit, checkbox, radio)
108108
if (!in_array($type, ['submit', 'checkbox', 'radio', 'reset', 'file'])) {
109109
$options = $this->appendClassToOptions('form-control', $options);
110+
} else if (in_array($type, ['submit', 'reset'])) {
111+
$options = $this->appendClassToOptions('btn', $options);
110112
}
111113

112114
// Call the parent input method so that Laravel can handle
@@ -310,7 +312,21 @@ public function plainTextarea($name, $value = null, $options = [])
310312
{
311313
return parent::textarea($name, $value, $options);
312314
}
313-
315+
316+
/**
317+
* Create a button element.
318+
*
319+
* @param string $value
320+
* @param array $options
321+
* @return string
322+
*/
323+
public function button($value = null, $options = array())
324+
{
325+
$options = $this->appendClassToOptions('btn', $options);
326+
327+
return parent::button($value, $options);
328+
}
329+
314330
/**
315331
* Append the given class to the given options array.
316332
*

0 commit comments

Comments
 (0)