Laravel - Request and Response
Examine this Laravel validation snippet:
What is the purpose of the
$request->validate([
'password' => 'required|min:8|confirmed'
]);What is the purpose of the
confirmed rule here?