Skip to content

Commit d6e6abe

Browse files
committed
Alpha order inputs.
1 parent e77634b commit d6e6abe

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

html.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -109,13 +109,13 @@ This allows you to quickly build forms that not only bind to model values, but e
109109

110110
**Generating Other Inputs**
111111

112-
echo Form::search($name, $value = null, $attributes = array());
112+
echo Form::date($name, $value = null, $attributes = array());
113113
echo Form::email($name, $value = null, $attributes = array());
114+
echo Form::file($name, $attributes = array());
115+
echo Form::number($name, $value = null, $attributes = array());
116+
echo Form::search($name, $value = null, $attributes = array());
114117
echo Form::telephone($name, $value = null, $attributes = array());
115118
echo Form::url($name, $value = null, $attributes = array());
116-
echo Form::number($name, $value = null, $attributes = array());
117-
echo Form::date($name, $value = null, $attributes = array());
118-
echo Form::file($name, $attributes = array());
119119

120120
<a name="checkboxes-and-radio-buttons"></a>
121121
## Checkboxes and Radio Buttons

0 commit comments

Comments
 (0)