<?php $__env->startSection('content'); ?>
<div class="content-header">
<div class="container-fluid">
<div class="row">
<div class="col-sm-6">
<h1 class="m-0 text-dark"><?php echo e(__('Why Choose Us')); ?> </h1>
</div><!-- /.col -->
<div class="col-sm-6">
<ol class="breadcrumb float-sm-right">
<li class="breadcrumb-item"><a href="<?php echo e(route('admin.dashboard')); ?>"><i class="fas fa-home"></i><?php echo e(__('Home')); ?></a></li>
<li class="breadcrumb-item"><?php echo e(__('Why Choose Us')); ?></li>
</ol>
</div><!-- /.col -->
</div><!-- /.row -->
</div><!-- /.container-fluid -->
</div>
<section class="content">
<div class="container-fluid">
<div class="row">
<div class="col-lg-6">
<div class="card card-primary card-outline">
<div class="card-header">
<h3 class="card-title mt-1"><?php echo e(__('Why Choose List')); ?></h3>
<div class="card-tools d-flex">
<div class="d-inline-block mr-4">
<select class="form-control lang languageSelect" data="<?php echo e(url()->current() . '?language='); ?>">
<?php $__currentLoopData = $langs; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $lang): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?>
<option value="<?php echo e($lang->code); ?>" <?php echo e($lang->code == request()->input('language') ? 'selected' : ''); ?> ><?php echo e($lang->name); ?></option>
<?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?>
</select>
</div>
<a href="<?php echo e(route('admin.wcu.add'). '?language=' . $currentLang->code); ?>" class="btn btn-primary btn-sm">
<i class="fas fa-plus"></i> <?php echo e(__('Add')); ?>
</a>
</div>
</div>
<!-- /.card-header -->
<div class="card-body">
<table class="table table-striped table-bordered data_table">
<thead>
<tr>
<th><?php echo e(__('#')); ?></th>
<th><?php echo e(__('Icon')); ?></th>
<th><?php echo e(__('Title')); ?></th>
<th><?php echo e(__('Order')); ?></th>
<th><?php echo e(__('Status')); ?></th>
<th><?php echo e(__('Action')); ?></th>
</tr>
</thead>
<tbody>
<?php $__currentLoopData = $why_selects; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $id=>$data): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?>
<tr>
<td>
<?php echo e($id); ?>
</td>
<td>
<i class="<?php echo e($data->icon); ?>"></i>
</td>
<td>
<?php echo e($data->title); ?>
</td>
<td>
<?php echo e($data->serial_number); ?>
</td>
<td>
<?php if($data->status == 1): ?>
<span class="badge badge-success"><?php echo e(__('Publish')); ?></span>
<?php else: ?>
<span class="badge badge-warning"><?php echo e(__('Unpublish')); ?></span>
<?php endif; ?>
</td>
<td>
<a href="<?php echo e(route('admin.wcu.edit', $data->id)); ?>" class="btn btn-info btn-sm"><i class="fas fa-pencil-alt"></i><?php echo e(__('Edit')); ?></a>
<form id="deleteform" class="d-inline-block" action="<?php echo e(route('admin.wcu.delete', $data->id )); ?>" method="post">
<?php echo csrf_field(); ?>
<button type="submit" class="btn btn-danger btn-sm" id="delete">
<i class="fas fa-trash"></i><?php echo e(__('Delete')); ?>
</button>
</form>
</td>
</tr>
<?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?>
</tbody>
</table>
</div>
</div>
</div>
<div class="col-lg-6">
<div class="card card-primary card-outline">
<div class="card-header">
<h3 class="card-title mt-1"><?php echo e(__('Why Choose Us Info')); ?></h3>
<div class="card-tools">
<div class="d-inline-block mr-4">
<select class="form-control form-control-sm lang" id="languageSelect" data="<?php echo e(url()->current() . '?language='); ?>">
<?php $__currentLoopData = $langs; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $lang): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?>
<option value="<?php echo e($lang->code); ?>" <?php echo e($lang->code == request()->input('language') ? 'selected' : ''); ?> ><?php echo e($lang->name); ?></option>
<?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?>
</select>
</div>
</div>
</div>
<!-- /.card-header -->
<div class="card-body">
<form class="form-horizontal" action="<?php echo e(route('admin.why_chooseus_update', $static->language_id)); ?>" method="POST" enctype="multipart/form-data">
<?php echo csrf_field(); ?>
<div class="form-group row">
<label class="col-sm-2 control-label"><?php echo e(__('Image1')); ?><span class="text-danger">*</span></label>
<div class="col-sm-10">
<img class="mw-400 mb-3 img-demo show-img" src="<?php echo e(asset('assets/front/img/'.$static->w_c_us_image1)); ?>" alt="">
<div class="custom-file">
<label class="custom-file-label" for="w_c_us_image1"><?php echo e(__('Choose New Image')); ?></label>
<input type="file" class="custom-file-input up-img" name="w_c_us_image1" id="w_c_us_image1">
</div>
<p class="help-block text-info"><?php echo e(__('Upload 370X344 (Pixel) Size image for best quality.
Only jpg, jpeg, png image is allowed.')); ?>
</p>
<?php if($errors->has('w_c_us_image1')): ?>
<p class="text-danger"> <?php echo e($errors->first('w_c_us_image1')); ?> </p>
<?php endif; ?>
</div>
</div>
<div class="form-group row">
<label class="col-sm-2 control-label"><?php echo e(__('Image2')); ?><span class="text-danger">*</span></label>
<div class="col-sm-10">
<img class="mw-400 mb-3 img-demo show-img" src="<?php echo e(asset('assets/front/img/'.$static->w_c_us_image2)); ?>" alt="">
<div class="custom-file">
<label class="custom-file-label" for="w_c_us_image2"><?php echo e(__('Choose New Image')); ?></label>
<input type="file" class="custom-file-input up-img" name="w_c_us_image2" id="w_c_us_image2">
</div>
<p class="help-block text-info"><?php echo e(__('Upload 370X344 (Pixel) Size image for best quality.
Only jpg, jpeg, png image is allowed.')); ?>
</p>
<?php if($errors->has('w_c_us_image2')): ?>
<p class="text-danger"> <?php echo e($errors->first('w_c_us_image2')); ?> </p>
<?php endif; ?>
</div>
</div>
<div class="form-group row">
<label class="col-sm-2 control-label"><?php echo e(__('Title')); ?><span class="text-danger">*</span></label>
<div class="col-sm-10">
<input type="text" class="form-control" name="w_c_us_title" placeholder="<?php echo e(__('Title')); ?>" value="<?php echo e($static->w_c_us_title); ?>">
<?php if($errors->has('w_c_us_title')): ?>
<p class="text-danger"> <?php echo e($errors->first('w_c_us_title')); ?> </p>
<?php endif; ?>
</div>
</div>
<div class="form-group row">
<label class="col-sm-2 control-label"><?php echo e(__('Subtitle')); ?><span class="text-danger">*</span></label>
<div class="col-sm-10">
<input type="text" class="form-control" name="w_c_us_sub_title" placeholder="<?php echo e(__('Subtitle')); ?>" value="<?php echo e($static->w_c_us_sub_title); ?>">
<?php if($errors->has('w_c_us_sub_title')): ?>
<p class="text-danger"> <?php echo e($errors->first('w_c_us_sub_title')); ?> </p>
<?php endif; ?>
</div>
</div>
<div class="form-group row">
<div class="offset-sm-2 col-sm-10">
<button type="submit" class="btn btn-primary"><?php echo e(__('Update')); ?></button>
</div>
</div>
</form>
</div>
<!-- /.card-body -->
</div>
</div>
</div>
</div>
<!-- /.row -->
</section>
<?php $__env->stopSection(); ?>
<?php echo $__env->make('admin.layout', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?><?php /**PATH C:\wamp64\www\masbintang\core\resources\views/admin/home/why-choose-us/index.blade.php ENDPATH**/ ?>