Guest User

Untitled

a guest
Jan 19th, 2017
36
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 0.37 KB | None | 0 0
  1. <div class="form-group{{ $errors->has('email') ? ' has-error' : '' }}">
  2.                 <input id="email" type="email" class="form-control" placeholder="{{ trans('app.email_address')}}" name="email" value="{{ old('email') }}" required>
  3.  
  4.                 @if ($errors->has('email'))
  5.                     <span class="help-block">
  6.                         <strong>{{ $errors->first('email') }}</strong>
  7.                     </span>
  8.                 @endif
  9.         </div>
Add Comment
Please, Sign In to add comment