2FAuth/app/Http/Requests/UserStoreRequest.php

33 lines
647 B
PHP
Raw Normal View History

<?php
2022-03-15 14:47:07 +01:00
namespace App\Http\Requests;
use Illuminate\Foundation\Http\FormRequest;
class UserStoreRequest extends FormRequest
{
/**
* Determine if the user is authorized to make this request.
*
* @return bool
*/
public function authorize()
{
return true;
}
/**
* Get the validation rules that apply to the request.
*
* @return array
*/
public function rules()
{
return [
2023-02-20 17:09:59 +01:00
'name' => 'required|string|max:255',
2022-11-22 15:15:52 +01:00
'email' => 'required|string|email|max:255',
'password' => 'required|string|min:8|confirmed',
];
}
2022-11-22 15:15:52 +01:00
}