Laravel Classroom image

osdyui
 
To post your Question Join Classroom
 
Lesson Topics's No:-  First|1 | 2 | 3 | 4 | 5 | 6 | 7|Last
Lessons:-Forms

6.5 Secret Inputs
There are also a number of extra generation methods for less common form inputs that aren’t
covered by the documentation. Many of these inputs were added with the HTML5 spec, and
are in the process of being implemented by good web browsers (not IE). Here is a listing of the
methods along with their parameters.
1 <?php
2
3 // create a search field
4 Form::search($name, $value = null, $attributes = array());
5
6 // a textbox that only allows email addresses
7 Form::email($name, $value = null, $attributes = array());
8
9 // this text field will only allow phone numbers
10 Form::telephone($name, $value = null, $attributes = array());
11
12 // valid URL's only
13 Form::url($name, $value = null, $attributes = array());
14
15 // a number field with rocker switches
16 Form::number($name, $value = null, $attributes = array());
17
18 // a date picker
19 Form::date($name, $value = null, $attributes = array());
20
21 // used for file uploads
22 Form::file($name, $attributes = array());

 
 
 

osdyui

Skills    Laravel

Qualifications :-
Location :-,,,
Description:-
Explore
 

  Students (0)