Skip to content

Commit

Permalink
Remove unecessary validation feedback for password confirmation field (
Browse files Browse the repository at this point in the history
  • Loading branch information
caiquecastro authored and taylorotwell committed Oct 25, 2016
1 parent 7cc2574 commit dc92343
Showing 1 changed file with 1 addition and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -52,17 +52,11 @@
</div>
</div>

<div class="form-group{{ $errors->has('password_confirmation') ? ' has-error' : '' }}">
<div class="form-group">
<label for="password-confirm" class="col-md-4 control-label">Confirm Password</label>

<div class="col-md-6">
<input id="password-confirm" type="password" class="form-control" name="password_confirmation" required>

@if ($errors->has('password_confirmation'))
<span class="help-block">
<strong>{{ $errors->first('password_confirmation') }}</strong>
</span>
@endif
</div>
</div>

Expand Down

0 comments on commit dc92343

Please sign in to comment.