/**
  * Create a new password controller instance.
  *
  * @param  \Illuminate\Contracts\Auth\Guard  $auth
  * @param  \Illuminate\Contracts\Auth\PasswordBroker  $passwords
  */
 public function __construct(Guard $auth, PasswordBroker $passwords)
 {
     parent::__construct();
     $this->auth = $auth;
     $this->passwords = $passwords;
     //$this->middleware('guest');
 }
 /**
  * Create a new authentication controller instance.
  *
  * @param  \Illuminate\Contracts\Auth\Guard  $auth
  * @param  \Illuminate\Contracts\Auth\Registrar  $registrar
  */
 public function __construct(Guard $auth, Registrar $registrar)
 {
     parent::__construct();
     $this->auth = $auth;
     $this->registrar = $registrar;
     $this->facebookInt = LookUp::itemIndex('SOCIALIZE_TYPE', 'facebook');
     $this->twitterInt = LookUp::itemIndex('SOCIALIZE_TYPE', 'twitter');
 }
 public function __construct()
 {
     parent::__construct();
 }