If there a way to check whether or not the validator failed specifically because of the unique rule?
unique
$rules = array( \'email_address\' =
Check for a specific rule within the returned array of failed rules
if ($validator->fails()) { $failedRules = $validator->failed(); if(isset($failedRules['email_address']['Unique'])) { ...