diff --git a/validation.md b/validation.md
index 1066ab02b01..a059dcb72e3 100644
--- a/validation.md
+++ b/validation.md
@@ -1020,6 +1020,8 @@ Below is a list of all available validation rules and their function:
[Present With All](#rule-present-with-all)
[Prohibited](#rule-prohibited)
[Prohibited If](#rule-prohibited-if)
+[Prohibited If Accepted](#rule-prohibited-if-accepted)
+[Prohibited If Declined](#rule-prohibited-if-declined)
[Prohibited Unless](#rule-prohibited-unless)
[Prohibits](#rule-prohibits)
[Required](#rule-required)
@@ -1808,6 +1810,16 @@ If complex conditional prohibition logic is required, you may utilize the `Rule:
'role_id' => Rule::prohibitedIf(fn () => $request->user()->is_admin),
]);
+
+#### prohibited_if_accepted:_anotherfield_,...
+
+The field under validation must be missing or empty if the _anotherfield_ field is equal to `"yes"`, `"on"`, `1`, `"1"`, `true`, or `"true"`.
+
+
+#### prohibited_if_declined:_anotherfield_,...
+
+The field under validation must be missing or empty if the _anotherfield_ field is equal to `"no"`, `"off"`, `0`, `"0"`, `false`, or `"false"`.
+
#### prohibited_unless:_anotherfield_,_value_,...