49 lines
1.2 KiB
PHP
49 lines
1.2 KiB
PHP
<?php
|
|
|
|
namespace App\Http\Requests\Auth;
|
|
|
|
use Illuminate\Foundation\Http\FormRequest;
|
|
use Illuminate\Support\Facades\Hash;
|
|
use Illuminate\Validation\Rules;
|
|
|
|
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.
|
|
*
|
|
* @return array<string, \Illuminate\Contracts\Validation\ValidationRule|array<mixed>|string>
|
|
*/
|
|
public function rules(): array
|
|
{
|
|
$user = $this->user();
|
|
|
|
return [
|
|
'current_password' => [
|
|
'required',
|
|
'min:6',
|
|
'max:20',
|
|
function ($attribute, $value, $fail) use ($user) {
|
|
if (!Hash::check($value, $user->password)) {
|
|
$fail('The current password is incorrect.');
|
|
}
|
|
},
|
|
],
|
|
'password' => [
|
|
'required',
|
|
'min:6',
|
|
'max:20',
|
|
'confirmed',
|
|
Rules\Password::defaults(), // Ensure the Password Rule is configured properly
|
|
],
|
|
];
|
|
}
|
|
}
|