How can I display the validation message in the view that is being redirected in Laravel ?
Here is my function in a Controller
publi
A New Laravel Blade Error Directive comes to Laravel 5.8.13
// Before @if ($errors->has('email')) {{ $errors->first('email') }} @endif // After: @error('email') {{ $message }} @enderror