Hi,
as the subject, I need to know if the old values are empty or not, in blade. I mean, I need to know if we are coming back from a post or we are in the first page request.
I ran into this same issue. In my case it was an array/multi select, for instance for user roles. If an admin wants to remove all roles but the form has another error, the form should be returned with an empty list of roles, instead of the old roles. Something like old('roles', $user->roles) does not work because old() just checks if the key exists in the session.