{!! 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('debit_cards')
->text(trans('texts.accept_debit_cards'))
->value(1) !!}
{!! 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') !!}