File tree Expand file tree Collapse file tree 1 file changed +11
-1
lines changed Expand file tree Collapse file tree 1 file changed +11
-1
lines changed Original file line number Diff line number Diff line change @@ -106,7 +106,17 @@ This allows you to quickly build forms that not only bind to model values, but e
106
106
** Generating A Password Input**
107
107
108
108
echo Form::password('password');
109
-
109
+
110
+ ** Generating Other Inputs**
111
+
112
+ echo Form::search($name, $value = null, $attributes = array());
113
+ echo Form::email($name, $value = null, $attributes = array());
114
+ echo Form::telephone($name, $value = null, $attributes = array());
115
+ 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());
119
+
110
120
<a name =" checkboxes-and-radio-buttons " ></a >
111
121
## Checkboxes and Radio Buttons
112
122
You can’t perform that action at this time.
0 commit comments