<div class="form-group{{ $errors->has('login') ? ' has-error' : '' }}">
<label class="col-md-4 control-label">Login</label>
<div class="col-md-6">
<input type="text" class="form-control" name="login" value="{{ old('login') }}">
@if ($errors->has('login'))
<span class="help-block">
<strong>{{ $errors->first('login') }}</strong>
</span>
@endif </div>
</div> да