['required'],
        'last_name' => ['required'],
        'email' => ['required', 'email'],
        'company_name' => ['required'],
        'country' => ['required'],
        'ach' => ['sometimes'],
        'wepay_payment_tos_agree' => ['accepted'],
        'debit_cards' => ['sometimes'],
    ];
    public function mount()
    {
        MultiDB::setDb($this->company->db);
        $user = User::find($this->user_id);
        $this->company = Company::where('company_key', $this->company->company_key)->first();
            
        $this->fill([
            'wepay_payment_tos_agree' => '',
            'ach' => '',
            'country' => 'US',
            'user' => $user,
            'first_name' => $user->first_name,
            'last_name' => $user->last_name,
            'email' => $user->email,
            'company_name' => $this->company->present()->name(),
            'saved' => ctrans('texts.confirm'),
            'terms' => ''.ctrans('texts.terms_of_service').'',
            'privacy_policy' => ''.ctrans('texts.privacy_policy').'',
        ]);
    }
    public function render()
    {
      return render('gateways.wepay.signup.wepay-signup');
    }
    public function submit()
    {
        MultiDB::setDb($this->company->db);
        $data = $this->validate($this->rules);
        //need to create or get a new WePay CompanyGateway
        $cg = CompanyGateway::where('gateway_key', '8fdeed552015b3c7b44ed6c8ebd9e992')
                            ->where('company_id', $this->company->id)
                            ->firstOrNew();
        if(!$cg->id) {
            $fees_and_limits = new \stdClass;
            $fees_and_limits->{GatewayType::CREDIT_CARD} = new FeesAndLimits;
            $fees_and_limits->{GatewayType::BANK_TRANSFER} = new FeesAndLimits;
            
            $cg = CompanyGatewayFactory::create($this->company->id, $this->user->id);
            $cg->gateway_key = '8fdeed552015b3c7b44ed6c8ebd9e992';
            $cg->require_cvv = false;
            $cg->require_billing_address = false;
            $cg->require_shipping_address = false;
            $cg->update_details = false;
            $cg->config = encrypt(config('ninja.testvars.checkout'));
            $cg->fees_and_limits = $fees_and_limits;
            $cg->token_billing = 'always';
            $cg->save();
        }
        $this->saved = ctrans('texts.processing');
        $wepay_driver = new WePayPaymentDriver($cg, null, null);
        $wepay = $wepay_driver->init()->wepay;
        $user_details = [
            'client_id' => config('ninja.wepay.client_id'),
            'client_secret' => config('ninja.wepay.client_secret'),
            'email' => $data['email'],
            'first_name' => $data['first_name'],
            'last_name' => $data['last_name'],
            'original_ip' => request()->ip(),
            'original_device' => request()->server('HTTP_USER_AGENT'),
            'tos_acceptance_time' => time(),
            'redirect_uri' => route('wepay.finished'),
            'scope' => 'manage_accounts,collect_payments,view_user,preapprove_payments,send_money',
        ];
        $wepay_user = $wepay->request('user/register/', $user_details);
        $access_token = $wepay_user->access_token;
        $access_token_expires = $wepay_user->expires_in ? (time() + $wepay_user->expires_in) : null;
        $wepay = new WePay($access_token);
            $account_details = [
                'name' => $data['company_name'],
                'description' => ctrans('texts.wepay_account_description'),
                'theme_object' => json_decode('{"name":"Invoice Ninja","primary_color":"0b4d78","secondary_color":"0b4d78","background_color":"f8f8f8","button_color":"33b753"}'),
                'callback_uri' => route('payment_webhook', ['company_key' => $this->company->company_key, 'company_gateway_id' => $cg->hashed_id]),
                'rbits' => $this->company->rBits(),
                'country' => $data['country'],
            ];
            if ($data['country'] == 'CA') {
                $account_details['currencies'] = ['CAD'];
                $account_details['country_options'] = ['debit_opt_in' => boolval($data['debit_cards'])];
            } elseif ($data['country'] == 'GB') {
                $account_details['currencies'] = ['GBP'];
            }
 
            $wepay_account = $wepay->request('account/create/', $account_details);
            try {
                $wepay->request('user/send_confirmation/', []);
                $confirmation_required = true;
            } catch (\WePayException $ex) {
                if ($ex->getMessage() == 'This access_token is already approved.') {
                    $confirmation_required = false;
                } else {
                    request()->session()->flash('message', $ex->getMessage());
                }
                nlog("failed in try catch ");
                nlog($ex->getMessage());
            }
            $config = [
                'userId' => $wepay_user->user_id,
                'accessToken' => $access_token,
                'tokenType' => $wepay_user->token_type,
                'tokenExpires' => $access_token_expires,
                'accountId' => $wepay_account->account_id,
                'state' => $wepay_account->state,
                'testMode' => config('ninja.wepay.environment') == 'staging',
                'country' => $data['country'],
            ];
            $cg->setConfig($config);
            $cg->save();
            if ($confirmation_required) {
                request()->session()->flash('message', trans('texts.created_wepay_confirmation_required'));
            } else {
                $update_uri = $wepay->request('/account/get_update_uri', [
                    'account_id' => $wepay_account->account_id,
                    'redirect_uri' => config('ninja.app_url'),
                ]);
                return redirect($update_uri->uri);
            }
        return redirect()->to('/wepay/finished');
    }
}