uo; default: return parent::__get($key); } } /** * Handle user logins * * @return bool * @throws ActionMissingInputsException * @throws InvalidPasswordException */ public function handle(): bool { parent::init(); $this->uo = User::where('name',$this->USER)->orWhere('alias',$this->USER)->firstOrFail(); if (! Hash::check($this->PASS,$this->uo->password)) throw new InvalidPasswordException(sprintf('Password doesnt match for [%s]',$this->USER)); return TRUE; } public function preSubmitField(Server $server,Field $field): ?string { // Noop return NULL; } }