HEX
Server: Microsoft-IIS/8.5
System: Windows NT YDAWBH120 6.3 build 9600 (Windows Server 2012 R2 Standard Edition) AMD64
User: tentjecom_web (0)
PHP: 7.4.14
Disabled: NONE
Upload Files
File: D:/HostingSpaces/SBogers10/topswtw.komma.pro/app/storage/views/34eb1514161f06296da48c7373790b0b
 <?php $__env->startSection('background'); ?> <div class="bg-50"></div> <?php $__env->stopSection(); ?> <?php $__env->startSection('sidebar'); ?> <?php echo $__env->make('partials.sidebar',['customerService' => ''], array_except(get_defined_vars(), array('__data', '__path')))->render(); ?> <?php $__env->stopSection(); ?> <?php $__env->startSection('brandNavigationBar'); ?> <?php echo $__env->make('partials.brandNavigationBar', array_except(get_defined_vars(), array('__data', '__path')))->render(); ?> <?php $__env->stopSection(); ?> <?php $__env->startSection('content'); ?> <div class="content-container column fluid-100"> <?php echo $__env->make('partials.breadcrumb', array_except(get_defined_vars(), array('__data', '__path')))->render(); ?> <?php if(isset($new) && $new ==true ): ?> <h1 class="page-title"><?php echo Lang::get('customer/create.title'); ?></h1> <?php else: ?> <h1 class="page-title"><?php echo Lang::get('customer/edit.title'); ?></h1> <?php endif; ?> <div class="top-bar content-block column fluid-100"> <div class="product-filter column fluid-66"> <a href="<?php echo url( \Shop::getPageService()->page('customer')->route ); ?>" class="back-btn"><?php echo Lang::get('customer/login.back'); ?></a> </div> </div> <?php echo Form::open([ 'url' => $shop->getPageService()->page('editAccount')->route, 'method' => 'post', 'ng-controller' => 'CustomerFormCtrl' ]); ?> <article class="text-block content-block column fluid-100"> <div class="input-column"> <h2><?php echo Lang::get('customer/create.account_details'); ?></h2> <div class="input-holder<?php echo $errors->first('email',' error'); ?>"> <?php echo $errors->first('email','<span class="message error">:message</span>'); ?> <label for="email"><?php echo Lang::get('form.email'); ?></label> <?php echo Form::email('email', $customer->email); ?> </div> <div class="input-holder<?php echo $errors->first('password',' error'); ?>"> <?php echo $errors->first('password','<span class="message error">:message</span>'); ?> <label for="password"><?php echo Lang::get('form.password'); ?></label> <?php echo Form::password('password'); ?> </div> <div class="input-holder<?php echo $errors->first('password_confirmation',' error'); ?>"> <label for="password_confirmation"><?php echo Lang::get('form.password_confirmation'); ?></label> <?php echo Form::password('password_confirmation'); ?> </div> </div> <div class="clear">&nbsp;</div> <h2><?php echo Lang::get('customer/create.contact_details'); ?></h2> <div class="input-column"> <div class="input-holder radio <?php echo $errors->first('title',' error'); ?>"> <?php echo Form::label('title', Lang::get('form.salutation') ); ?> <?php echo Form::radio('title','mr', $customer->title == 'mr', ['id' => 'title-mr']); ?> <label for="title-mr" class="radio-label"><?php echo ucfirst(Lang::get('form.title_mr')); ?></label> <?php echo Form::radio('title', 'mrs', $customer->title == 'mrs', ['id' => 'title-mrs']); ?> <label for="title-mrs" class="radio-label"><?php echo ucfirst(Lang::get('form.title_mrs')); ?></label> <?php if( Shop::getLanguageService()->getCurrentLanguage() == 'en' ): ?> <?php echo Form::radio('title', 'ms', $customer->title == 'ms', ['id' => 'title-ms']); ?> <label for="title-ms" class="radio-label"><?php echo ucfirst(Lang::get('form.title_ms')); ?></label> <?php endif; ?> </div> <div class="input-holder w11<?php echo $errors->first('first_name',' error'); ?>"> <label for="first_name"><?php echo Lang::get('form.first_name'); ?></label> <?php echo Form::text('first_name', $customer->first_name, ['autocomplete' => 'given-name']); ?> </div> <?php if( Shop::getLanguageService()->getCurrentLanguage() != 'en' ): ?> <div class="input-holder w8<?php echo $errors->first('name_insertion',' error'); ?>"> <label for="name-insertion"><?php echo Lang::get('form.insertion'); ?></label> <?php echo Form::text('name_insertion', $customer->name_insertion, ['autocomplete' => 'prevent']); ?> </div> <?php endif; ?> <div class="input-holder w15 last<?php echo $errors->first('last_name',' error'); ?>"> <label for="last_name"><?php echo Lang::get('form.last_name'); ?></label> <?php echo Form::text('last_name', $customer->last_name, ['autocomplete' => 'family-name']); ?> </div> <div class="input-holder<?php echo $errors->first('telephone',' error'); ?>"> <?php echo $errors->first('telephone','<span class="message error">:message</span>'); ?> <label for="company"><?php echo Lang::get('form.telephone'); ?> (<?php echo Lang::get('form.optional'); ?> )</label> <?php echo Form::text('telephone', $customer->telephone); ?> </div> <div class="input-holder<?php echo $errors->first('company',' error'); ?>"> <?php echo $errors->first('company','<span class="message error">:message</span>'); ?> <label for="company"><?php echo Lang::get('form.company_name'); ?> (<?php echo Lang::get('form.optional'); ?> )</label> <?php echo Form::text('company', $customer->company, ['ng-model' => 'company', 'ng-init' => 'company = \''.$customer->company.'\'']); ?> </div> <div class="input-holder<?php echo $errors->first('company_vat',' error'); ?>" ng-show="company && country != 'NL'"> <?php echo $errors->first('company_vat','<span class="message error">:message</span>'); ?> <label for="company_vat"><?php echo Lang::get('form.company_name_vat'); ?></label> <?php echo Form::text('company_vat', $customer->company_vat); ?> </div> </div> <div class="input-column last"> <div class="input-holder<?php echo $errors->first('street',' error'); ?>"> <?php echo $errors->first('street','<span class="message error">:message</span>'); ?> <label for="street"><?php echo Lang::get('form.street'); ?></label> <?php echo Form::text('street', $customer->street); ?> </div> <div class="input-holder w11<?php echo $errors->first('house_number',' error'); ?>"> <label for="house_number"><?php echo Lang::get('form.house_number'); ?></label> <?php echo Form::text('house_number', $customer->house_number, ['autocomplete' => 'prevent']); ?> </div> <div class="input-holder w11 last<?php echo $errors->first('house_number_suffix',' error'); ?>"> <label for="house_number_suffix"><?php echo Lang::get('form.suffix'); ?></label> <?php echo Form::text('house_number_suffix', $customer->house_number_suffix, ['autocomplete' => 'prevent']); ?> </div> <div class="clear"></div> <div class="input-holder w11<?php echo $errors->first('postal',' error'); ?>"> <label for="postal"><?php echo Lang::get('form.postal'); ?></label> <?php echo Form::text('postal', $customer->postal); ?> </div> <div class="input-holder w24 last <?php echo $errors->first('city',' error'); ?>"> <?php echo $errors->first('city','<span class="message error">:message</span>'); ?> <label for="city"><?php echo Lang::get('form.city'); ?></label> <?php echo Form::text('city', $customer->city); ?> </div> <div class="input-holder<?php echo $errors->first('country',' error'); ?>"> <?php echo $errors->first('country','<span class="message error">:message</span>'); ?> <?php echo Form::label('country', Lang::get('form.country')); ?> <?php echo $__env->make('partials.countrySelectBox',[ 'name' => 'country', 'value' => Input::old('country', $customer->country) , 'attributes' => [ 'ng-model' => 'country', 'ng-init' => "country = '[[value]]'" ] ], array_except(get_defined_vars(), array('__data', '__path')))->render(); ?> </div> </div> <div class="clear">&nbsp;</div> <div class="input-column"> <div class="btn input animate " data-text="<?php echo Lang::get('form.submit'); ?>"> <span class="text"><?php echo Lang::get('form.submit'); ?></span> <?php echo Form::submit('', ['class' => 'btn']); ?> </div> </div> </article> <?php echo Form::close(); ?> </div> <?php $__env->stopSection(); ?>
<?php echo $__env->make('layouts.master', array_except(get_defined_vars(), array('__data', '__path')))->render(); ?>