16 lines
627 B
PHP
16 lines
627 B
PHP
<div class="form-group row <?php echo e($errors->has($name) ? ' has-error' : ''); ?>">
|
|
<?php echo e(Form::label($name, $label)); ?>
|
|
|
|
<?php echo e(Form::password($name, array('class' => 'form-control'))); ?>
|
|
|
|
<small class="text-danger"><?php echo e($errors->first($name)); ?></small>
|
|
</div>
|
|
|
|
<div class="form-group row <?php echo e($errors->has($name) ? ' has-error' : ''); ?>">
|
|
<?php echo e(Form::label($name, $labelRepeat)); ?>
|
|
|
|
<?php echo e(Form::password($name.'_confirmation', array('class' => 'form-control'))); ?>
|
|
|
|
<small class="text-danger"><?php echo e($errors->first($name)); ?></small>
|
|
</div>
|