Roman_applicant-site/app/Http/Requests/admin/StoreUserRequest.php

33 lines
624 B
PHP
Raw Normal View History

2024-01-12 16:42:16 +03:00
<?php
2024-02-13 15:38:30 +03:00
namespace App\Http\Requests\admin;
2024-01-12 16:42:16 +03:00
use Illuminate\Foundation\Http\FormRequest;
class StoreUserRequest 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<string, mixed>
*/
public function rules()
{
return [
'name' => 'required|unique:users,name|max:255',
2024-01-19 19:17:08 +03:00
'email' => 'email',
2024-01-12 16:42:16 +03:00
'password' => 'required'
];
}
}