1. Go to this page and download the library: Download smalldogs/html5inputs library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
// Create a date field
Form::date('yourBirthday');
// Create a pre-populated month field for June 2014
Form::month('hottestMonth', '2014-06');
// Create an empty input with bootstrap styles
Form::search('searchBox', null, ['class' => 'form-control']);
// Auto-associate label with input (use the same name)
Form::label('favoriteColor', 'Select Your Favorite Color');
Form::color('favoriteColor', '#FFAE25');
// Use Form-model binding
$user = new User();
$user->phoneNumber = '123-555-5555';
{{ Form::model($user) }}
{{ Form::label('phoneNumber', 'Update Your Phone #') }}
{{ Form::tel('phoneNumber') }}
{{ Form::close() }}
Loading please wait ...
Before you can download the PHP files, the dependencies should be resolved. This can take some minutes. Please be patient.