Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

.btn class added for submit, reset and button elements. #12

Merged
merged 1 commit into from
Jan 11, 2016
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 17 additions & 1 deletion src/Manavo/BootstrapForms/FormBuilder.php
Original file line number Diff line number Diff line change
Expand Up @@ -107,6 +107,8 @@ public function input($type, $name, $value = null, $options = [])
// Don't add form-control for some input types (like submit, checkbox, radio)
if (!in_array($type, ['submit', 'checkbox', 'radio', 'reset', 'file'])) {
$options = $this->appendClassToOptions('form-control', $options);
} else if (in_array($type, ['submit', 'reset'])) {
$options = $this->appendClassToOptions('btn', $options);
}

// Call the parent input method so that Laravel can handle
Expand Down Expand Up @@ -310,7 +312,21 @@ public function plainTextarea($name, $value = null, $options = [])
{
return parent::textarea($name, $value, $options);
}


/**
* Create a button element.
*
* @param string $value
* @param array $options
* @return string
*/
public function button($value = null, $options = array())
{
$options = $this->appendClassToOptions('btn', $options);

return parent::button($value, $options);
}

/**
* Append the given class to the given options array.
*
Expand Down