How can I display the validation message in the view that is being redirected in Laravel ?
Here is my function in a Controller
publi
{!! Form::text('firstname', null !!} @if($errors->has('firstname')) {{ $errors->first('firstname') }} @endif