At first it was working fine the validation errors was passed to the view. Ater updating the laravel framework errors are not showing. from my controller ``` php return Redirect::route('login')->withErrors($validator); ``` from my view ``` html {{ $errors->first('password', ':message') }} ``` I can see that the error is there but it does not pass to the view ``` php if ($validator->fails()) { echo $validator->errors()->first('email');exit(); } ```