@extends('header') @section('head') @parent @stop @section('content') @parent @include('accounts.nav', ['selected' => ACCOUNT_PAYMENTS]) {!! Former::open($url)->method($method)->rules(array( 'first_name' => 'required', 'last_name' => 'required', 'email' => 'required', 'company_name' => 'required', 'tos_agree' => 'required', 'country' => 'required', ))->addClass('warn-on-exit') !!} {!! Former::populateField('company_name', $account->getDisplayName()) !!} @if ($account->country) {!! Former::populateField('country', $account->country->iso_3166_2) !!} @endif {!! Former::populateField('first_name', $user->first_name) !!} {!! Former::populateField('last_name', $user->last_name) !!} {!! Former::populateField('email', $user->email) !!} {!! Former::populateField('show_address', 1) !!} {!! Former::populateField('update_address', 1) !!} {!! Former::populateField('country', 'US') !!}

{!! trans('texts.online_payments') !!}

{!! Former::text('first_name') !!} {!! Former::text('last_name') !!} {!! Former::text('email') !!} {!! Former::text('company_name')->help('wepay_company_name_help')->maxlength(255) !!}
{!! Former::radios('country') ->radios([ trans('texts.country_United States') => ['value' => 'US'], trans('texts.country_Canada') => ['value' => 'CA'], trans('texts.country_United Kingdom') => ['value' => 'GB'], ]) !!}
{!! Former::checkbox('show_address') ->label(trans('texts.billing_address')) ->text(trans('texts.show_address_help')) ->value(1) !!} {!! Former::checkbox('update_address') ->label(' ') ->text(trans('texts.update_address_help')) ->value(1) !!} {!! Former::checkboxes('creditCardTypes[]') ->label('accepted_card_logos') ->checkboxes($creditCardTypes) ->class('creditcard-types') ->inline() ->value(1) !!} {!! Former::checkbox('enable_ach') ->label(trans('texts.ach')) ->text(trans('texts.enable_ach')) ->value(1) !!} {!! Former::checkbox('tos_agree')->label(' ') ->text(trans('texts.wepay_payment_tos_agree', [ 'terms' => ''.trans('texts.terms_of_service').'', 'privacy_policy' => ''.trans('texts.privacy_policy').'', ])) ->value('true') ->inlineHelp('standard_fees_apply') !!}
@foreach ([ 'Visa Consumer Credit', 'Visa Infinite', 'Visa Infinite Privilege', 'Visa Business', 'Visa Business Premium', 'Visa Corporate', 'Visa Prepaid', 'Visa Debit', 'MasterCard Consumer Credit', 'MasterCard World', 'MasterCard World Elite', 'MasterCard Business/Corporate', 'MasterCard Debit', 'MasterCard Prepaid', 'American Express', ] as $type) @endforeach

{!! Button::normal(trans('texts.cancel'))->large()->asLinkTo(HTMLUtils::previousUrl('/gateways/create'))->appendIcon(Icon::create('remove-circle')) !!} {!! Button::success(trans('texts.sign_up_with_wepay'))->submit()->large() !!}
{!! Former::close() !!} @stop