Fortify: 비밀번호 확인 필드를 비활성화하는 방법(Jetstream)
해결책
이 메소드를
app/Actions/Fortify/CreateNewUser.php
파일에 추가하십시오.protected function passwordRules()
{
return ['required', 'string', new Password];
}
Jetstream
를 사용하는 경우 resources/views/auth/register.blade.php
에서 이 줄도 제거해야 합니다.<div class="mt-4">
<x-jet-label for="password_confirmation" value="{{ __('Confirm Password') }}" />
<x-jet-input id="password_confirmation" class="block mt-1 w-full" type="password" name="password_confirmation" required autocomplete="new-password" />
</div>
설명
Fortify에는 사용자 생성을 담당하는 작업 클래스가 있습니다.
app/Actions/Fortify/CreateNewUser.php
에서 찾을 수 있습니다.다음 줄을 볼 수 있습니다.
'password' => $this->passwordRules(),
후드 아래에서는
passwordRules
특성의 PasswordValidationRules
방법을 사용합니다. 이 메서드는 confirmed
요소가 있는 배열을 반환합니다.return ['required', 'string', new Password, 'confirmed'];
confirmed
는 이메일 확인을 담당하는 규칙이므로 passwordRules
규칙이 없는 자체 confirmed
방법을 만들었습니다.
Reference
이 문제에 관하여(Fortify: 비밀번호 확인 필드를 비활성화하는 방법(Jetstream)), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/ostap/fortify-how-to-disable-password-confirmation-field-jetstream-55lo텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)