You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If you submit a form containing the above, and there is a validation error, the value previously inputted into the form is not loaded back into the field.
Example:
If you submit a form containing the above, and there is a validation error, the value previously inputted into the form is not loaded back into the field.
Caused by ln 31 of OldFormInputProvider.php.
return $this->request->old(field_name_to_id($key), $default);
field_name_to_id($key)
translates to"profile_first_name"
, wheras it should be"profile.first_name"
.Changing the line to simply
return $this->request->old($key, $default);
, solves the issue.The text was updated successfully, but these errors were encountered: