refactor: refactor controllers, services, validation and introduce DTOs, FormRequests and domain exceptions
This commit is contained in:
@@ -0,0 +1,38 @@
|
||||
<?php
|
||||
|
||||
namespace App\Http\Requests\User;
|
||||
|
||||
use Illuminate\Foundation\Http\FormRequest;
|
||||
|
||||
class UpdatePasswordRequest extends FormRequest
|
||||
{
|
||||
/**
|
||||
* Determine if the user is authorized to make this request.
|
||||
*/
|
||||
public function authorize(): bool
|
||||
{
|
||||
return true;
|
||||
}
|
||||
|
||||
/**
|
||||
* Get the validation rules that apply to the request.
|
||||
*/
|
||||
public function rules(): array
|
||||
{
|
||||
return [
|
||||
'password' => 'required|min:6|confirmed',
|
||||
];
|
||||
}
|
||||
|
||||
/**
|
||||
* Get the custom validation error messages.
|
||||
*/
|
||||
public function messages(): array
|
||||
{
|
||||
return [
|
||||
'password.required' => 'Mật khẩu mới không được để trống.',
|
||||
'password.min' => 'Mật khẩu mới phải có ít nhất 6 ký tự.',
|
||||
'password.confirmed' => 'Mật khẩu xác nhận không trùng khớp.',
|
||||
];
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user