Viewing file: b30770b8aeb994f7b2dbbbe262f77382f8371194.php (5.74 KB) -rw-r--r-- Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<hr>
<div class="form-group row">
<label class="col-sm-3 control-label text-left">
<dt><?php echo e(__('Appearance')); ?></dt>
</label>
<div class="col-sm-8 row">
<?php if(in_array('width', $fields)): ?>
<div class="col-sm-4 col-md-3">
<input type="hidden" name="full" value="0">
<div class="form-group">
<div class="switch d-inline m-r-10">
<label class="control-label text-left"><?php echo e(__('Full Width')); ?></label>
<input type="checkbox" name="full" id="<?php echo e($sid = uniqid('sw_')); ?>" value="1"
<?php echo e($component && $component->full == 1 ? 'checked' : ''); ?>>
<label for="<?php echo e($sid); ?>" class="cr -mt-8"></label>
</div>
</div>
</div>
<?php endif; ?>
<?php if(in_array('margin', $fields)): ?>
<div class="col-sm-4 col-md-3">
<div class="form-group row">
<label class="col-md-12"><?php echo e(__('Margin Top')); ?></label>
<div class="col-md-12">
<input type="text" name="mt"
value="<?php echo e($component && $component->mt ? $component->mt : ''); ?>" placeholder="10px | 10%"
class="form-control inputFieldDesign">
</div>
</div>
</div>
<div class="col-sm-4 col-md-3">
<div class="form-group row">
<label class="col-md-12"><?php echo e(__('Margin Bottom')); ?></label>
<div class="col-md-12">
<input type="text" name="mb"
value="<?php echo e($component && $component->mb ? $component->mb : ''); ?>" placeholder="10px | 10%"
class="form-control inputFieldDesign">
</div>
</div>
</div>
<?php endif; ?>
<?php if(in_array('height', $fields)): ?>
<div class="col-sm-4 col-md-3">
<div class="form-group row">
<label class="col-md-12"><?php echo e(__('Height (px)')); ?></label>
<div class="col-md-12">
<div class="input-group mb-3">
<div class="input-group-prepend">
<span class="input-group-text rounded-0 h-40 <?php echo e(languageDirection() == 'ltr' ? 'rounded-start' : 'rounded-end'); ?>" id="basic-addon1">px</span>
</div>
<input type="number" name="height"
value="<?php echo e($component && $component->height ? $component->height : ''); ?>"
placeholder="10" class="form-control inputFieldDesign">
</div>
</div>
</div>
</div>
<?php endif; ?>
<?php if(in_array('rounded', $fields)): ?>
<div class="col-sm-4 col-md-3">
<input type="hidden" name="rounded" value="0">
<div class="form-group">
<div class="switch d-inline m-r-10">
<label class="control-label text-left"><?php echo e(__('Round Corner')); ?></label>
<input type="checkbox" name="rounded" id="<?php echo e($sid = uniqid('sw_')); ?>" value="1"
<?php echo e($component && $component->rounded == 1 ? 'checked' : ''); ?>>
<label for="<?php echo e($sid); ?>" class="cr -mt-8"></label>
</div>
</div>
</div>
<?php endif; ?>
<?php if(in_array('full_link', $fields)): ?>
<div class="col-md-3">
<input type="hidden" name="full_link" value="0">
<div class="form-group">
<div class="switch d-inline m-r-10">
<label class="control-label text-left"><?php echo e(__('Full Card Link')); ?></label>
<input type="checkbox" name="full_link" id="<?php echo e($sid = uniqid('sw_')); ?>" value="1"
<?php echo e($component && $component->full_link == 1 ? 'checked' : ''); ?>>
<label for="<?php echo e($sid); ?>" class="cr -mt-8"></label>
</div>
</div>
</div>
<?php endif; ?>
<?php if(in_array('card_height', $fields)): ?>
<div class="col-sm-4 col-md-3">
<div class="form-group row">
<label class="col-md-12"><?php echo e(__('Card Height')); ?></label>
<div class="col-md-12">
<div class="input-group mb-3">
<div class="input-group-prepend">
<span class="input-group-text rounded-0 h-40 <?php echo e(languageDirection() == 'ltr' ? 'rounded-start' : 'rounded-end'); ?>">px</span>
</div>
<input type="number" name="card_height"
value="<?php echo e($component && $component->card_height ? $component->card_height : ''); ?>"
placeholder="10" class="form-control inputFieldDesign">
</div>
</div>
</div>
</div>
<?php endif; ?>
</div>
</div>
<?php /**PATH /home/picotech/domains/ecom1.picotech.app/public_html/Modules/CMS/Resources/views/edit/sub/appearance.blade.php ENDPATH**/ ?>
|