File: D:/HostingSpaces/SBogers10/topswtw.komma.pro/app/storage/views/d43abeae178ab765889d89d32b78b918
<h2>2. <?php echo Lang::get('checkout/checkout.shipping.title'); ?></h2> <div class="input-holder radio" ng-init="shippingType='<?php echo $checkout->shipping()->get('shipping-type'); ?>'"> <div class="radio-placeholder"> <?php echo Form::radio('shipping-type','equal-to-invoice-address', null, ['id'=>'equal-to-invoice-address', 'ng-model' => 'shippingType', 'ng-change' => 'setShippingCosts()', 'tabindex' => '-1']); ?> <label for="equal-to-invoice-address" class="radio-label"><?php echo Lang::get('checkout/checkout.shipping.ship_to_invoice_address'); ?></label> </div> <div class="radio-placeholder"> <?php echo Form::radio('shipping-type', 'add-shipping-address', null, ['id'=>'add-shipping-address', 'ng-model' => 'shippingType', 'ng-change' => 'setShippingCosts()', 'tabindex' => '-1']); ?> <label for="add-shipping-address" class="radio-label"><?php echo Lang::get('checkout/checkout.shipping.ship_to_new_address'); ?></label> </div> <?php if(\Shop::isParcelShopActive()): ?> <div class="radio-placeholder"> <?php echo Form::radio('shipping-type', 'dpd-parcel-shop', null, ['id'=>'dpd-parcel-shop', 'ng-model' => 'shippingType', 'ng-change' => 'setShippingCosts()', 'tabindex' => '-1']); ?> <label for="dpd-parcel-shop" class="radio-label"><?php echo Lang::get('checkout/checkout.shipping.ship_to_dpd_parcelShop'); ?></label> </div> <?php endif; ?> </div> <div class="hidden-box <?php if($checkout->shipping()->get('shipping-type') == 'add-shipping-address'): ?> open <?php endif; ?>" id="shipping-box"> <div class="input-column"> <div class="input-holder radio"> <?php echo Form::label('shipping-title', Lang::get('form.salutation') ); ?> <?php echo Form::radio('shipping-title','mr',$checkout->shipping()->get('shipping-title') == 'mr' || $checkout->shipping()->get('shipping-title') == '', ['id' => 'shipping-title-mr', 'tabindex' => '-1']); ?> <label for="shipping-title-mr" class="radio-label"><?php echo ucfirst(Lang::get('form.title_mr')); ?></label> <?php echo Form::radio('shipping-title', 'mrs', $checkout->shipping()->get('shipping-title') == 'mrs',['id'=>'shipping-title-mrs', 'tabindex' => '-1']); ?> <label for="shipping-title-mrs" class="radio-label"><?php echo ucfirst(Lang::get('form.title_mrs')); ?></label> <?php if( Shop::getLanguageService()->getCurrentLanguage() == 'en' ): ?> <?php echo Form::radio('shipping-title', 'ms', $checkout->shipping()->get('shipping-title') == 'ms',['id'=>'shipping-title-ms', 'tabindex' => '-1']); ?> <label for="shipping-title-ms" class="radio-label"><?php echo ucfirst(Lang::get('form.title_ms')); ?></label> <?php endif; ?> </div> <div class="mobile-form-name"> <label><?php echo \Illuminate\Support\Facades\Lang::get('mobile.name'); ?></label> <?php if( $errors->has('shipping-first-name') || $errors->has('shipping-last-name') ): ?> <span class="message error"><?php echo Lang::get('validation.custom.fullName.required'); ?></span><br/> <?php endif; ?> <div class="input-holder <?php echo $errors->first('shipping-first-name',' error'); ?>"> <?php echo Form::text('shipping-first-name', $checkout->shipping()->get('shipping-first-name'), ['placeholder' => Lang::get('mobile.first_name'), 'tabindex' => '-1', 'autocomplete' => 'given-name']); ?> </div> <?php if( Shop::getLanguageService()->getCurrentLanguage() != 'en' ): ?> <div class="input-holder "> <?php echo Form::text('shipping-name-insertion', $checkout->shipping()->get('shipping-name-insertion'), ['placeholder' => Lang::get('mobile.in-between'), 'tabindex' => '-1', 'autocomplete' => 'prevent']); ?> </div> <?php endif; ?> <div class="input-holder <?php echo $errors->first('shipping-last-name',' error'); ?>"> <?php echo Form::text('shipping-last-name', $checkout->shipping()->get('shipping-last-name'), ['placeholder' => Lang::get('mobile.last_name'), 'tabindex' => '-1', 'autocomplete' => 'family-name']); ?> </div> </div> <div class="input-holder<?php echo $errors->first('shipping-telephone',' error'); ?>"> <?php echo $errors->first('shipping-telephone','<span class="message error">:message</span>'); ?> <?php /*Phone number for the DE and AT shop is required*/ ?> <?php echo Form::label('shipping-telephone',Lang::get('form.telephone').(Shop::getShop()->id !=2 ?' (' . Lang::get('form.optional') . ')':'') ); ?> <?php echo Form::tel('shipping-telephone', $checkout->shipping()->get('shipping-telephone'), ['placeholder' => Lang::get('form.telephone'), 'tabindex' => '-1']); ?> </div> <div class="input-holder"> <?php echo Form::label('shipping-company', Lang::get('form.company_name') . ' (' . Lang::get('form.optional') . ')' ); ?> <?php echo Form::text('shipping-company', $checkout->shipping()->get('shipping-company'),['placeholder' => Lang::get('mobile.company_name'), 'tabindex' => '-1']); ?> </div> </div> <div class="input-column last"> <div class="input-holder<?php echo $errors->first('shipping-street',' error'); ?>"> <?php echo $errors->first('shipping-street','<span class="message error">:message</span>'); ?> <?php echo Form::label('shipping-street', Lang::get('mobile.street')); ?> <?php echo Form::text('shipping-street', $checkout->shipping()->get('shipping-street'), ['placeholder' => Lang::get('mobile.street'), 'tabindex' => '-1']); ?> </div> <div class="mobile-multiple-inputs"> <?php echo Form::label('shipping-house-number', Lang::get('mobile.house_number')); ?> <?php echo $errors->first('shipping-house-number','<span class="message error">:message</span>'); ?> <div class="input-holder first-input <?php echo $errors->first('shipping-house-number',' error'); ?>"> <?php echo Form::number('shipping-house-number', $checkout->shipping()->get('shipping-house-number'), ['placeholder' => Lang::get('mobile.house_number'), 'tabindex' => '-1', 'autocomplete' => 'prevent']); ?> </div> <div class="input-holder second-input"> <?php echo Form::text('shipping-house-number-suffix', $checkout->shipping()->get('shipping-house-number-suffix'), ['placeholder' => Lang::get('mobile.house_number_suffix'), 'tabindex' => '-1', 'autocomplete' => 'prevent']); ?> </div> </div> <div class="mobile-multiple-inputs"> <?php echo Form::label('shipping-postal', Lang::get('mobile.postal') ); ?> <?php if( $errors->has('shipping-postal') || $errors->has('shipping-city') ): ?> <span class="message error"><?php echo Lang::get('validation.custom.fullAddress.required'); ?></span><br/> <?php endif; ?> <div class="input-holder first-input <?php echo $errors->first('shipping-postal',' error'); ?>"> <?php echo Form::text('shipping-postal', $checkout->shipping()->get('shipping-postal'), ['placeholder' => Lang::get('mobile.postal'), 'tabindex' => '-1']); ?> </div> <div class="input-holder second-input <?php echo $errors->first('shipping-city',' error'); ?>"> <?php echo Form::text('shipping-city', $checkout->shipping()->get('shipping-city'), ['placeholder' => Lang::get('mobile.city'), 'tabindex' => '-1']); ?> </div> </div> <div class="input-holder select-row <?php echo $errors->first('shipping-country',' error'); ?>"> <?php echo $errors->first('shipping-country','<span class="message error">:message</span>'); ?> <?php echo Form::label('shipping-country', Lang::get('form.country')); ?> <?php echo Form::select('shipping-country', $countries, $checkout->shipping()->get('shipping-country'),[ 'ng-model' => 'shippingCountry', 'ng-init' => 'shippingCountry = \''.$checkout->shipping()->get('shipping-country').'\'', 'ng-change' => 'setShippingCosts()', 'tabindex' => '-1' ]); ?> </div> </div> <div class="clear"></div> </div> <?php if(\Shop::isParcelShopActive()): ?> <div class="hidden-box <?php if($checkout->shipping()->get('shipping-type') == 'dpd-parcel-shop'): ?> open <?php endif; ?>" id="dpd-parcel-shop-box"> <?php echo $__env->make('mobile.partials.checkout.parcelShop', array_except(get_defined_vars(), array('__data', '__path')))->render(); ?> </div> <?php endif; ?>