Example #1
0
        <?php 
echo Form::label('user.password_confirmation', 'Retype your password');
?>
        <?php 
echo Form::password('user.password_confirmation');
?>
        <!-- <label for="password_confirmation">Retype your password</label>
        <input type="password" name="password_confirmation" class="password" id="password_confirmation"> -->
    </div>

    <div class="field">
        <?php 
echo Form::label('user.age', 'Type your age: ');
?>
        <?php 
echo Form::numeric('user.age', 5, 100, 1);
?>
    </div>

    <div class="field">
        <?php 
echo Form::label('user.country', 'Choose your country: ');
?>
        <?php 
echo Form::select('user.country', ['Russia', 'Ukraine', 'China']);
?>
    </div>

    <div class="field">
        <?php 
echo Form::label('user.sex', 'Choose your country: ');