My validation form works fine and it looks like this:
{!! Form::email('email', null, array('placeholder' => 'Email', 'class' => 'form-control ')) !!}
{{$errors->first('email')}}
If the email is not good, I get this error: The a email has already been taken.
The thing is that I wan't to put a css class on the input also like error in order to add a red background border to the input.
How can I do this?