your "userRepository.save(user)" returns the actual User object and not the "Optional<User>". Wrap it with Optional to match your return type.
return Optional.ofNullable(userRepository.save(user));