With the help of some of the comments, I discovered that when saving a Customer, a field called created_at was looking for a class datetime for validation. However, there is no filter for datetime validation.
Going into the database, I found in table customer_eav_attribute the column input_filter. Changing datetime to date for the relevant attribute fixed this specific problem.
Hope it will help you, if works then mark as a solution.