Using services inside the views is generally a bad practice.
The view should contain only a presentation logic.
In your example instead of passing the whole service to the view you could try to pass only a user object. For example $scope.currentUser = authService.currentUser().