Feuerwehr-eppingen/resources/views/inc/forms/inputPassword.blade.php

12 lines
527 B
PHP

<div class="form-group row {{ $errors->has($name) ? ' has-error' : '' }}">
{{ Form::label($name, $label) }}
{{ Form::password($name, array('class' => 'form-control')) }}
<small class="text-danger">{{ $errors->first($name) }}</small>
</div>
<div class="form-group row {{ $errors->has($name) ? ' has-error' : '' }}">
{{ Form::label($name, $labelRepeat) }}
{{ Form::password($name.'_confirmation', array('class' => 'form-control')) }}
<small class="text-danger">{{ $errors->first($name) }}</small>
</div>