-
- {!! Former::text('first_name')
- ->placeholder(trans('texts.first_name'))
- ->autocomplete('given-name')
- ->label('') !!}
-
-
- {!! Former::text('last_name')
- ->placeholder(trans('texts.last_name'))
- ->autocomplete('family-name')
- ->label('') !!}
-
-
- @if (isset($paymentTitle))
+ @if($paymentType != PAYMENT_TYPE_STRIPE_ACH)
+
-
- {!! Former::text('email')
- ->placeholder(trans('texts.email'))
- ->autocomplete('email')
+
+ {!! Former::text('first_name')
+ ->placeholder(trans('texts.first_name'))
+ ->autocomplete('given-name')
+ ->label('') !!}
+
+
+ {!! Former::text('last_name')
+ ->placeholder(trans('texts.last_name'))
+ ->autocomplete('family-name')
->label('') !!}
+ @if (isset($paymentTitle))
+
+
+ {!! Former::text('email')
+ ->placeholder(trans('texts.email'))
+ ->autocomplete('email')
+ ->label('') !!}
+
+
+ @endif
+
+
+
+ @if ($showAddress)
+
{{ trans('texts.billing_address') }} {{ trans('texts.payment_footer1') }}
+
+
+ {!! Former::text('address1')
+ ->autocomplete('address-line1')
+ ->placeholder(trans('texts.address1'))
+ ->label('') !!}
+
+
+ {!! Former::text('address2')
+ ->autocomplete('address-line2')
+ ->placeholder(trans('texts.address2'))
+ ->label('') !!}
+
+
+
+
+ {!! Former::text('city')
+ ->autocomplete('address-level2')
+ ->placeholder(trans('texts.city'))
+ ->label('') !!}
+
+
+ {!! Former::text('state')
+ ->autocomplete('address-level1')
+ ->placeholder(trans('texts.state'))
+ ->label('') !!}
+
+
+
+
+ {!! Former::text('postal_code')
+ ->autocomplete('postal-code')
+ ->placeholder(trans('texts.postal_code'))
+ ->label('') !!}
+
+
+ {!! Former::select('country_id')
+ ->placeholder(trans('texts.country_id'))
+ ->fromQuery($countries, 'name', 'id')
+ ->addGroupClass('country-select')
+ ->label('') !!}
+
+
+
+
+ @endif
+
+
{{ trans('texts.billing_method') }}
@endif
-
-
- @if ($showAddress)
-
{{ trans('texts.billing_address') }}
- @if($paymentType != PAYMENT_TYPE_STRIPE_ACH)
- {{ trans('texts.payment_footer1') }}
- @endif
-
-
- {!! Former::text('address1')
- ->autocomplete('address-line1')
- ->placeholder(trans('texts.address1'))
- ->label('') !!}
-
-
- {!! Former::text('address2')
- ->autocomplete('address-line2')
- ->placeholder(trans('texts.address2'))
- ->label('') !!}
-
-
-
-
- {!! Former::text('city')
- ->autocomplete('address-level2')
- ->placeholder(trans('texts.city'))
- ->label('') !!}
-
-
- {!! Former::text('state')
- ->autocomplete('address-level1')
- ->placeholder(trans('texts.state'))
- ->label('') !!}
-
-
-
-
- {!! Former::text('postal_code')
- ->autocomplete('postal-code')
- ->placeholder(trans('texts.postal_code'))
- ->label('') !!}
-
-
- {!! Former::select('country_id')
- ->placeholder(trans('texts.country_id'))
- ->fromQuery($countries, 'name', 'id')
- ->addGroupClass('country-select')
- ->label('') !!}
-
-
-
-
- @endif
-
-
{{ trans('texts.billing_method') }}
-
-
@if($paymentType == PAYMENT_TYPE_STRIPE_ACH)
@if($accountGateway->getPlaidEnabled())
@@ -430,61 +429,34 @@
{{ trans('texts.link_manually') }}
@endif
{{ trans('texts.ach_verification_delay_help') }}
-
-
-
- {!! Former::radios('account_holder_type')->radios(array(
- trans('texts.individual_account') => array('value' => 'individual'),
- trans('texts.company_account') => array('value' => 'company'),
- ))->inline()->label(''); !!}
-
-
-
- {!! Former::text('account_holder_name')
- ->placeholder(trans('texts.account_holder_name'))
- ->label('') !!}
-
-
-
-
+ {!! Former::radios('account_holder_type')->radios(array(
+ trans('texts.individual_account') => array('value' => 'individual'),
+ trans('texts.company_account') => array('value' => 'company'),
+ ))->inline()->label(trans('texts.account_holder_type')); !!}
+ {!! Former::text('account_holder_name')
+ ->label(trans('texts.account_holder_name')) !!}
{!! Former::select('country')
- ->placeholder(trans('texts.country_id'))
+ ->label(trans('texts.country_id'))
->fromQuery($countries, 'name', 'iso_3166_2')
- ->addGroupClass('country-select')
- ->label('') !!}
-
-
+ ->addGroupClass('country-select') !!}
{!! Former::select('currency')
- ->placeholder(trans('texts.currency_id'))
+ ->label(trans('texts.currency_id'))
->fromQuery($currencies, 'name', 'code')
- ->addGroupClass('currency-select')
- ->label('') !!}
-
-
-
-
+ ->addGroupClass('currency-select') !!}
{!! Former::text('')
->id('routing_number')
- ->placeholder(trans('texts.routing_number'))
- ->label('') !!}
-
-
-
-
-
+ ->label(trans('texts.routing_number')) !!}
+
{!! Former::text('')
->id('account_number')
- ->placeholder(trans('texts.account_number'))
- ->label('') !!}
-
-
+ ->label(trans('texts.account_number')) !!}
{!! Former::text('')
->id('confirm_account_number')
- ->placeholder(trans('texts.confirm_account_number'))
- ->label('') !!}
-
+ ->label(trans('texts.confirm_account_number')) !!}