I have five radio buttons with values
value="1"
value="2"
value="3"
value="4"
value="5"
Obviously, I get only one value.
How can I use the Laravel validator
$this->validate($request, [
To make sure the input signal is 1,2,3,4 or 5?
user2929209
source
share