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/framework/views/ |
<?php /*file*/ ?>
<div class="portlet gal">
<div class="portlet-title">
<div class="actions">
<button type="button" class="btn btn-sm red delete_gallery 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-5">
<div class="form-group <?php if(isset($key)): ?><?php echo e($errors->has('photo.'.$key) ? 'has-error' : ''); ?><?php endif; ?>">
<div class="col-md-9">
<div class="fileinput fileinput-new" data-provides="fileinput">
<div class="fileinput-new thumbnail" style="width: 200px; height: 150px;">
<img src="http://www.placehold.it/200x150/EFEFEF/AAAAAA&text=banner+image" alt=""/>
</div>
<div class="fileinput-preview fileinput-exists thumbnail" style="max-width: 200px; max-height: 150px;"></div>
<div>
<span class="btn default btn-file">
<span class="fileinput-new">Select image</span>
<span class="fileinput-exists">Change</span>
<input type="file" name="photo[]">
</span>
<a href="#" class="btn default fileinput-exists" data-dismiss="fileinput">Remove </a>
</div>
</div>
<?php if(isset($key)): ?>
<div class="help-block">
<?php echo e($errors->first('photo.'.$key, ':message')); ?>
</div>
<?php endif; ?>
</div>
</div>
</div>
<div class="col-md-6">
<div class="form-group <?php if(isset($key)): ?><?php echo e($errors->has('file_order.'.$key) ? 'has-error' : ''); ?><?php endif; ?>">
<div class="col-md-9 col-md-offset-3">
<div class="input-group tooltips" title="<?php echo e(trans('banners::banners.form_file_order')); ?>">
<span class="input-group-addon">
<i class="fa fa-sort-numeric-asc"></i>
</span>
<?php echo Form::text(@isset($key)?"file_order[$key]":"file_order[]", null, array('class' => 'form-control','placeholder'=>trans('banners::banners.form_file_order'))); ?>
<span class="help-block">
<?php if(isset($key)): ?>
<?php echo e($errors->first('file_order.'.$key, ':message')); ?>
<?php endif; ?>
</span>
</div>
</div>
</div>
<div class="form-group <?php if(isset($key)): ?><?php echo e($errors->has('file_title.'.$key) ? 'has-error' : ''); ?><?php endif; ?>">
<div class="col-md-9 col-md-offset-3">
<div class="input-group tooltips" title="<?php echo e(trans('banners::banners.form_file_title')); ?>">
<span class="input-group-addon">
<i class="fa fa-info-circle"></i>
</span>
<?php echo Form::text(@isset($key)?"file_title[$key]":"file_title[]", null, array('class' => 'form-control','placeholder'=>trans('banners::banners.form_file_title'))); ?>
<span class="help-block">
<?php if(isset($key)): ?>
<?php echo e($errors->first('file_title.'.$key, ':message')); ?>
<?php endif; ?>
</span>
</div>
</div>
</div>
<div class="form-group <?php if(isset($key)): ?><?php echo e($errors->has('file_url.'.$key) ? 'has-error' : ''); ?><?php endif; ?>">
<div class="col-md-9 col-md-offset-3">
<div class="input-group tooltips" title="<?php echo e(trans('banners::banners.form_file_url')); ?>">
<span class="input-group-addon">
<i class="fa fa-link"></i>
</span>
<?php echo Form::text(@isset($key)?"file_url[$key]":"file_url[]", null, array('class' => 'form-control','placeholder'=>trans('banners::banners.form_file_url_placeholder'))); ?>
<span class="help-block">
<?php if(isset($key)): ?>
<?php echo e($errors->first('file_url.'.$key, ':message')); ?>
<?php endif; ?>
</span>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<?php /*end file*/ ?>