Server : Apache System : Linux 145.162.205.92.host.secureserver.net 5.14.0-611.45.1.el9_7.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Apr 1 05:56:53 EDT 2026 x86_64 User : tradze ( 1001) PHP Version : 8.1.34 Disable Function : NONE Directory : /home/tradze/www/storage-old/framework/views/ |
<div class="portlet addr">
<div class="portlet-title">
<div class="actions">
<button type="button" class="btn btn-sm red delete_address tooltips" title="<?php echo e(trans('general.action_delete')); ?>"><i class="fa fa-remove"></i></button>
</div>
</div>
<div class="portlet-body">
<div class="row">
<div class="col-md-9">
<!--address-->
<div class="form-group <?php if(isset($key)): ?><?php echo e($errors->has('address.'.$key) ? 'has-error' : ''); ?><?php endif; ?>">
<label class="control-label col-md-3">
<?php echo e(trans('users::salon.form_address')); ?>
<span class="required" aria-required="true">*</span>
</label>
<div class="col-md-9">
<?php echo Form::text(@isset($key)?"address[$key]":"address[]", null, array('class' => 'form-control','placeholder'=>'')); ?>
<span class="help-block">
<?php if(isset($key)): ?>
<?php echo e($errors->first('address.'.$key, ':message')); ?>
<?php endif; ?>
</span>
</div>
</div>
<!--end address-->
<!--county-->
<div class="form-group <?php if(isset($key)): ?><?php echo e($errors->has('county.'.$key) ? 'has-error' : ''); ?><?php endif; ?>">
<label class="control-label col-md-3">
<?php echo e(trans('users::salon.form_county')); ?>
<span class="required" aria-required="true">*</span>
</label>
<div class="col-md-9">
<?php echo Form::text(@isset($key)?"county[$key]":'county[]', null, array('class' => 'form-control','placeholder'=>'')); ?>
<span class="help-block">
<?php if(isset($key)): ?>
<?php echo e($errors->first('county.'.$key, ':message')); ?>
<?php endif; ?>
</span>
</div>
</div>
<!--end county-->
<!--postcode-->
<div class="form-group <?php if(isset($key)): ?><?php echo e($errors->has('postcode.'.$key) ? 'has-error' : ''); ?><?php endif; ?>">
<label class="control-label col-md-3">
<?php echo e(trans('users::salon.form_postcode')); ?>
<span class="required" aria-required="true">*</span>
</label>
<div class="col-md-9">
<?php echo Form::text(@isset($key)?"postcode[$key]":'postcode[]', null, array('class' => 'form-control','placeholder'=>'')); ?>
<span class="help-block">
<?php if(isset($key)): ?>
<?php echo e($errors->first('postcode.'.$key, ':message')); ?>
<?php endif; ?>
</span>
</div>
</div>
<!--end postcode-->
<!--main address-->
<div class="form-group <?php if(isset($key)): ?><?php echo e($errors->has('is_main') ? 'has-error' : ''); ?><?php endif; ?>">
<label class="control-label col-md-3">
<?php echo e(trans('users::salon.form_is_main')); ?>
<span class="required" aria-required="true">*</span>
</label>
<div class="col-md-9">
<?php echo Form::select(@isset($key)?"is_main[$key]":'is_main[]', trans('general.options_yes_no'),0,array('class'=>'form-control input-small')); ?>
<span class="help-block">
<?php if(isset($key)): ?>
<?php echo e($errors->first('is_main'.$key, ':message')); ?>
<?php endif; ?>
</span>
</div>
</div>
<!--end main address-->
</div>
</div>
</div>
</div>