Feuerwehr-eppingen/storage/framework/views/8e9a8b5b8e225b0f549feb44a4bd816d2bf335d3.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>