Spaces:
Running
Running
| namespace App\Http\Requests\User; | |
| use Illuminate\Foundation\Http\FormRequest; | |
| class ResetPasswordRequest extends FormRequest | |
| { | |
| 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 | |
| { | |
| return [ | |
| 'email' => 'required|email|exists:users,email', | |
| 'otp' => 'required|digits:6', | |
| 'password' => 'required|string|min:6|confirmed', | |
| ]; | |
| } | |
| } | |