File: D:/HostingSpaces/SBogers10/topswtw.komma.pro/app/storage/views/f3192fdef5befc8fb166077d9cf5fbf9
<?php $__env->startSection('background'); ?> <div class="bg-50"></div> <?php $__env->stopSection(); ?> <?php $__env->startSection('sidebar'); ?> <?php echo $__env->make('partials.sidebar', ['customerService' => (object) [ 'name' => 'Nicolette', 'url' => 'nicolette2' ] ], 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(); ?> <h1 class="page-title"><?php echo $entity->name; ?></h1> <article class="text-block content-block column fluid-100"> <div class="column"> <?php if(Request::has('status') && Request::get('status') == 'success'): ?> <?php echo $entity->description_two; ?> <?php else: ?> <?php echo $entity->description; ?> <?php /*Start of Contact form*/ ?> <?php echo Form::open(['files'=>true,'url' => URL::action('askHelp.form.submit',['lang'=> $shop->getLanguageService()->getCurrentLanguage()])]); ?> <?php /* Check for errors */ ?> <?php if($errors->any()): ?> <?php endif; ?> <?php /* Naam */ ?> <div class="input-holder <?php echo $errors->first('name','error'); ?>"> <?php echo $errors->first('name', '<span class="message error">:message</span>'); ?> <?php echo Form::label('name',Lang::get('form.first_name'). ' '.Lang::get('form.and').' ' .Lang::get('form.last_name')); ?> <?php echo Form::text('name',\Input::old('name') ); ?> </div> <?php /* E-mail */ ?> <div class="input-holder column-half <?php echo $errors->first('email','error'); ?>"> <?php echo $errors->first('email', '<span class="message error">:message</span>'); ?> <?php echo Form::label('email',Lang::get('form.email')); ?> <?php echo Form::text('email',\Input::old('email') ); ?> </div> <?php /* Phone */ ?> <div class="input-holder column-half right <?php echo $errors->first('phone','error'); ?>"> <?php echo Form::label('phone',Lang::get('form.telephone')); ?> <?php echo Form::text('phone',\Input::old('phone') ); ?> </div> <?php /*Brand*/ ?> <div class="input-holder column-half right <?php echo $errors->first('brand','error'); ?>"> <?php echo Form::label('brand',Lang::get('pages/askHelp.brand')); ?> <?php echo Form::text('brand',\Input::old('brand') ); ?> </div> <?php /*Dimensions*/ ?> <div class="input-holder column-half right <?php echo $errors->first('dimensions','error'); ?>"> <?php echo Form::label('dimensions',Lang::get('pages/askHelp.dimensions')); ?> <?php echo Form::text('dimensions',\Input::old('dimensions') ); ?> </div> <?php /*Image*/ ?> <div class="input-holder column-half right <?php echo $errors->first('image','error'); ?>"> <?php echo Form::label('image',Lang::get('pages/askHelp.image')); ?> <?php echo Form::file('image' ); ?> </div> <?php /* Message */ ?> <div class="input-holder <?php echo $errors->first('question','error'); ?>"> <?php echo $errors->first('question', '<span class="question error">:message</span>'); ?> <?php echo Form::label('question',Lang::get('form.question')); ?> <?php echo Form::textarea('question',\Input::old('question') ,['class'=>'small']); ?> </div> <?php /* spam filter */ ?> <div class="input-holder birthday"> <?php echo Form::text('birthday' ); ?> </div> <div class="btn-holder"> <?php echo $__env->make('partials.buttons.input',[ 'text' => Lang::get('form.contact_btn'), 'input' => Form::submit('') ], array_except(get_defined_vars(), array('__data', '__path')))->render(); ?> </div> <?php echo Form::hidden('route',Request::path()); ?> <?php echo Form::close(); ?> <?php /*End of contact form*/ ?> <?php endif; ?> </div> <?php if( ! empty($images)): ?> <?php foreach($images as $image): ?> <figure> <img src="<?php echo $image->large_image_url; ?>" alt="<?php echo $entity->name; ?>"/> </figure> <?php endforeach; ?> <?php endif; ?> </article> </div> <?php $__env->stopSection(); ?>
<?php echo $__env->make('layouts.master', array_except(get_defined_vars(), array('__data', '__path')))->render(); ?>