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

33 lines
601 B
PHP
Raw Normal View History

2024-01-12 16:42:16 +03:00
<?php
namespace App\Http\Requests;
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'
];
}
}