Skip to content

Commit e77634b

Browse files
committed
Merge pull request laravel#311 from kkirsche/master
Include additional form generators.
2 parents fe0316d + 2094801 commit e77634b

File tree

1 file changed

+11
-1
lines changed

1 file changed

+11
-1
lines changed

html.md

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,17 @@ This allows you to quickly build forms that not only bind to model values, but e
106106
**Generating A Password Input**
107107

108108
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+
110120
<a name="checkboxes-and-radio-buttons"></a>
111121
## Checkboxes and Radio Buttons
112122

0 commit comments

Comments
 (0)