Normally, whenever validation fails there is as error
variable made available to you in the session.
Try this on the registration page:-
@if ( $errors->any() )
@foreach ($errors->all() as $error)
{{ $error }}
@endforeach
@endif
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community