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 [
|
2024-01-19 19:17:08 +03:00
|
|
|
'name' => 'required|max:255',
|
|
|
|
'email' => 'email',
|
2024-01-12 16:42:16 +03:00
|
|
|
'password' => 'required'
|
|
|
|
];
|
|
|
|
}
|
|
|
|
}
|