Check your User model to see if it implements UserInterface. If not you need to add that.
Here is the Laravel default. Any model that is used for the Auth driver needs to implement UserInterface. If you want to use Laravel's password reminder system it also needs to implement RemindableInterface.
class User extends Eloquent implements UserInterface, RemindableInterface {
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community