12 lines
527 B
PHP
Executable File
12 lines
527 B
PHP
Executable File
<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>
|