Documentation Index
Fetch the complete documentation index at: https://mintlify.com/estebansalas94/Prueba-Soporte/llms.txt
Use this file to discover all available pages before exploring further.
Endpoint
guest — only accessible when the user is not already authenticated. Authenticated users will be redirected away.
Request
Parameters
The user’s display name. Maximum 255 characters.
The user’s email address. Must be a valid email, lowercase, unique across all registered accounts, and no longer than 255 characters.
The user’s chosen password. Must satisfy Laravel’s default password rules: minimum 8 characters. Must match
password_confirmation.Confirmation of the password. Must be identical to the
password field.Response
This endpoint does not return a JSON body. It responds with HTTP redirects.| Outcome | Redirect |
|---|---|
| Successful registration | /tasks |
| Validation failure | Back to /register with errors in the session |
Set-Cookie header is returned with the Laravel session cookie for immediate use in subsequent requests. A Registered event is fired, which can trigger email verification depending on the application configuration.
Example
Validation Rules
The following rules are enforced server-side inRegisteredUserController::store:
Validation Errors
When calling this endpoint from a JavaScript client (withAccept: application/json), a 422 Unprocessable Entity response is returned on failure:
| Field | Example error |
|---|---|
name | The name field is required. |
email | The email has already been taken. |
email | The email field must be a valid email address. |
password | The password field must be at least 8 characters. |
password | The password field confirmation does not match. |