Hi Guys.
Thanks for all the responses.
@Snapey :
The form posts to /register.
...Check the URL being called in network tools or view the source for the Form tag:
I'm not sure how to do this. Very new to Laravel.
...Do you display form errors? :
After getting the other two responses -- yes.
@ankitparmar372 and @Jaytee :
I have used the code mentioned to display errors and I have noticed that when I enter all the input the form always (incorrectly) displays the error that:
'The email field is required.'
If I enter the name only and omit the other two fields when entering the form the (incorrect) error message is:
'The name field is required. The email field is required. The password field is required.'
If I enter the password only the (correct) error message is:
'The name field is required. The email field is required.'
If I enter the email field only the (incorrect) error message is:
'The email field is required. The password field is required.'
Logically, these do not make sense but this is the output that I get.
I had initially hashed the password field but thought to put everything back to 'basics' just until the form was working properly.
Many thanks..