Estado inicial: frontend React + backend Laravel
This commit is contained in:
39
plataforma-tutorias/app/Http/Requests/LoginRequest.php
Normal file
39
plataforma-tutorias/app/Http/Requests/LoginRequest.php
Normal file
@@ -0,0 +1,39 @@
|
||||
<?php
|
||||
|
||||
namespace App\Http\Requests;
|
||||
|
||||
use Illuminate\Foundation\Http\FormRequest;
|
||||
|
||||
class LoginRequest extends FormRequest
|
||||
{
|
||||
/**
|
||||
* Determine if the user is authorized to make this request.
|
||||
*/
|
||||
public function authorize(): bool
|
||||
{
|
||||
return true;
|
||||
}
|
||||
|
||||
/**
|
||||
* Get the validation rules that apply to the request.
|
||||
*
|
||||
* @return array<string, \Illuminate\Contracts\Validation\ValidationRule|array<mixed>|string>
|
||||
*/
|
||||
public function rules(): array
|
||||
{
|
||||
return [
|
||||
'email' => 'required|email',
|
||||
'password' => 'required|min:6',
|
||||
];
|
||||
}
|
||||
|
||||
public function messages(): array
|
||||
{
|
||||
return [
|
||||
'email.required' => 'O email é obrigatório',
|
||||
'email.email' => 'O email deve ser um email válido',
|
||||
'password.required' => 'A password é obrigatória',
|
||||
'password.min' => 'A password deve ter pelo menos 6 caracteres',
|
||||
];
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user