Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions validation.md
Original file line number Diff line number Diff line change
Expand Up @@ -717,6 +717,7 @@ Below is a list of all available validation rules and their function:
[Numeric](#rule-numeric)
[Password](#rule-password)
[Present](#rule-present)
[Prohibited](#rule-prohibited)
[Prohibited If](#rule-prohibited-if)
[Prohibited Unless](#rule-prohibited-unless)
[Regular Expression](#rule-regex)
Expand Down Expand Up @@ -1129,6 +1130,11 @@ The field under validation must match the authenticated user's password. You may

The field under validation must be present in the input data but can be empty.

<a name="rule-prohibited"></a>
#### prohibited

The field under validation must be empty or not present.

<a name="rule-prohibited-if"></a>
#### prohibited_if:_anotherfield_,_value_,...

Expand Down