{{ $pages->fldPagesName }}
{!! $pages->fldPagesDescription !!} {!! Form::open(array('url' => '/registration', 'method' => 'post', 'class' => 'row-fluid input-100 bill-info')); !!}
{!! Form::label('firstname', '* First Name',array( )); !!}
{!! Form::text('firstname',isset($billing->fldClientsBillingFirstname) ? $billing->fldClientsBillingFirstname : "",array('id'=>'firstname','required','class'=>'form-control')) !!}
{!! Form::label('lastname', '* Last Name',array( )); !!}
{!! Form::text('lastname',isset($billing->fldClientsBillingLastname) ? $billing->fldClientsBillingLastname : "",array('id'=>'lastname','required','class'=>'form-control')) !!}
{!! Form::label('company', 'Company',array()); !!}
{!! Form::text('lastname',isset($billing->fldClientsBillingLastname) ? $billing->fldClientsBillingLastname : "",array('id'=>'lastname','required','class'=>'form-control')) !!}
{!! Form::label('email', '* Email Address',array( )); !!}
{!! Form::email('email',isset($billing->fldClientsBillingEmail) ? $billing->fldClientsBillingEmail : "",array('id'=>'email','required','class'=>'form-control')) !!}
{!! Form::label('phone', '* Phone Number',array( )); !!}
{!! Form::text('phone',isset($billing->fldClientsBillingPhone) ? $billing->fldClientsBillingPhone : "",array('id'=>'phone','required','class'=>'form-control')) !!}
{!! Form::label('country', '* Country'); !!}
{!! Form::select('country',array('0' => 'Select one')+App\Models\Country::displayCountry(),isset($billing->fldClientsBillingCountry) ? $billing->fldClientsBillingCountry : "US",array('id'=>'country','data-placeholder'=>'Select Country','class'=>'form-control')) !!}
{!! Form::label('address', '* Address',array( )); !!}
{!! Form::text('address',isset($billing->fldClientsBillingAddress) ? $billing->fldClientsBillingAddress : "",array('id'=>'address','required','class'=>'form-control','placeholder'=>'Street Address')) !!}
{!! Form::text('address',isset($billing->fldClientsBillingAddress) ? $billing->fldClientsBillingAddress : "",array('id'=>'address2','class'=>'form-control','placeholder'=>'Apartment, suite, unit, ect. (optional)')) !!}
{!! Form::label('city', '* City',array( )); !!}
{!! Form::text('city',isset($billing->fldClientsBillingCity) ? $billing->fldClientsBillingCity : "",array('id'=>'city','required', 'class'=>'form-control')) !!}
{!! Form::label('state', '* State'); !!}
{!! Form::select('state',array('0' => 'Select one')+App\Models\State::displayState(),isset($billing->fldClientsBillingState) ? $billing->fldClientsBillingState : "0",array('onchange' => 'checkTax(this.value)', 'id'=>'state','data-placeholder'=>'Select State', 'class'=>'form-control')) !!}
{!! Form::label('zip', '* Zip Code',array( )); !!}
{!! Form::text('zip',isset($billing->fldClientsBillingZip) ? $billing->fldClientsBillingZip : "",array('id'=>'zip','required','class'=>'form-control')) !!}
{!! Form::submit('Register',array('name'=>'register','class'=>'uk-button uk-button-primary'))!!}
Registered Customers
If you already have an account with us, please log in.
{!! Html::link('login', "Login",array('class'=>'uk-button uk-button-primary')) !!}