applicant-site/app/Http/Requests/admin/UpdateUserRequest.php

33 lines
637 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 UpdateUserRequest 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|string|max:255',
'email' => 'email|string|max:255',
'password' => 'required|max:255'
2024-01-12 16:42:16 +03:00
];
}
}