/** * Create a new SettingsForm instance. * * @param \Illuminate\Config\Repository $config * @param \Illuminate\Auth\AuthManager $auth */ public function __construct(Repository $config, AuthManager $auth) { parent::__construct(); $this->config = $config; $this->auth = $auth; }
/** * Create a new RegistrationForm instance. * * @param \Illuminate\Config\Repository $config */ public function __construct(Repository $config) { parent::__construct(); $this->config = $config; }