Play Framework forms are not dependency injectable and have different scope than userService, thus you cannot inject your dependencies into Login form by annotation. Try this:
public String validate() {
UserSvc userSvc = Play.application().injector().instanceOf(UserSvc.class);
}