{{ Form::text('billing_company', $homeparty_user->billing_company, array('placeholder'=>__('Company name'), 'class'=>'form-control', 'id'=>'billing_company', 'tabindex' => 1)) }}
@if ($errors->has('billing_salutation')) {{ $errors->first('billing_salutation') }} @endif
{{ Form::text('billing_firstname', $homeparty_user->billing_firstname, array('placeholder'=>__('First name'), 'class'=>'form-control', 'id'=>'billing_firstname', 'required'=>true, 'tabindex' => 4)) }} @if ($errors->has('billing_firstname')) {{ $errors->first('billing_firstname') }} @endif
{{ Form::text('billing_lastname', $homeparty_user->billing_lastname, array('placeholder'=>__('Last name'), 'class'=>'form-control', 'id'=>'billing_lastname', 'required'=>true, 'tabindex' => 5)) }} @if ($errors->has('billing_lastname')) {{ $errors->first('billing_lastname') }} @endif
{{ Form::text('billing_address', $homeparty_user->billing_address, array('placeholder'=>__('Street'), 'class'=>'form-control', 'required'=>true, 'id'=>'billing_address', 'tabindex' => 6)) }} @if ($errors->has('billing_address')) {{ $errors->first('billing_address') }} @endif
{{ Form::text('billing_address_2', $homeparty_user->billing_address_2, array('placeholder'=>__('Wohnung / Gebäude (optional)'), 'class'=>'form-control', 'id'=>'billing_address_2', 'tabindex' => 6)) }}
{{ Form::text('billing_zipcode', $homeparty_user->billing_zipcode, array('placeholder'=>__('Postcode'), 'class'=>'form-control', 'required'=>true, 'id'=>'billing_zipcode', 'tabindex' => 7)) }} @if ($errors->has('billing_zipcode')) {{ $errors->first('billing_zipcode') }} @endif
{{ Form::text('billing_city', $homeparty_user->billing_city, array('placeholder'=>__('City'), 'class'=>'form-control', 'required'=>true, 'id'=>'billing_city', 'tabindex' => 8)) }} @if ($errors->has('billing_city')) {{ $errors->first('billing_city') }} @endif
{{ Form::hidden('billing_country_id', $homeparty_user->billing_country_id) }}
@if($homeparty_user->billing_country) {{ $homeparty_user->billing_country->getLocated() }} @endif (Das Land kann nicht mehr geändert werden.)
{{ Form::text('billing_phone', $homeparty_user->billing_phone, array('placeholder'=>__('Phone'), 'class'=>'form-control', 'id'=>'billing_phone', 'tabindex' => 11)) }}
{{ Form::text('billing_email', $homeparty_user->billing_email, array('placeholder'=>'E-Mail', 'class'=>'form-control', 'id'=>'billing_email', 'tabindex' => 12)) }}

Lieferadresse
{{ Form::text('shipping_company', $homeparty_user->shipping_company, array('placeholder'=>__('Company name'), 'class'=>'form-control', 'id'=>'shipping_company', 'tabindex' => 16)) }}
@if ($errors->has('shipping_salutation')) {{ $errors->first('shipping_salutation') }} @endif
{{ Form::text('shipping_firstname', $homeparty_user->shipping_firstname, array('placeholder'=>__('First name'), 'class'=>'form-control', 'required'=>true, 'id'=>'shipping_firstname', 'tabindex' => 18)) }} @if ($errors->has('shipping_firstname')) {{ $errors->first('shipping_firstname') }} @endif
{{ Form::text('shipping_lastname', $homeparty_user->shipping_lastname, array('placeholder'=>__('Last name'), 'class'=>'form-control', 'required'=>true, 'id'=>'shipping_lastname', 'tabindex' => 19)) }} @if ($errors->has('shipping_lastname')) {{ $errors->first('shipping_lastname') }} @endif
{{ Form::text('shipping_address', $homeparty_user->shipping_address, array('placeholder'=>__('Street'), 'class'=>'form-control', 'required'=>true, 'id'=>'shipping_address', 'tabindex' => 20)) }} @if ($errors->has('shipping_address')) {{ $errors->first('shipping_address') }} @endif
{{ Form::text('shipping_address_2', $homeparty_user->shipping_address_2, array('placeholder'=>__('Wohnung / Gebäude (optional)'), 'class'=>'form-control', 'id'=>'shipping_address_2', 'tabindex' => 21)) }} @if ($errors->has('shipping_address_2')) {{ $errors->first('shipping_address_2') }} @endif
{{ Form::text('shipping_zipcode', $homeparty_user->shipping_zipcode, array('placeholder'=>__('Postcode'), 'class'=>'form-control', 'required'=>true, 'id'=>'shipping_zipcode', 'tabindex' => 22)) }} @if ($errors->has('shipping_zipcode')) {{ $errors->first('shipping_zipcode') }} @endif
{{ Form::text('shipping_city', $homeparty_user->shipping_city, array('placeholder'=>__('City'), 'class'=>'form-control', 'required'=>true, 'id'=>'shipping_city', 'tabindex' => 23)) }} @if ($errors->has('shipping_city')) {{ $errors->first('shipping_city') }} @endif
{{ Form::hidden('shipping_country_id', $homeparty_user->shipping_country_id) }}
@if($homeparty_user->shipping_country) {{ $homeparty_user->shipping_country->getLocated() }} @endif (Das Land kann nicht mehr geändert werden.)
{{ Form::text('shipping_phone', $homeparty_user->shipping_phone, array('placeholder'=>__('Phone'), 'class'=>'form-control', 'id'=>'shipping_phone', 'tabindex' => 26)) }}
{{ Form::text('shipping_email', $homeparty_user->shipping_email, array('placeholder'=>'E-Mail', 'class'=>'form-control', 'id'=>'shipping_email', 'tabindex' => 27)) }}

{{ Form::hidden('is_host', $homeparty_user->is_host) }}