<?php $__env->startSection('title', __('Update Page websites')); ?>
<?php $__env->startSection('content'); ?>
<div class="d-sm-flex align-items-center justify-content-between mb-4">
<h1 class="h3 mb-0 text-gray-800"><?php echo app('translator')->get('Update Page websites'); ?></h1>
</div>
<div class="row">
<div class="col-md-12">
<form role="form" method="post" action="<?php echo e(route('settings.pagewebsites.update', $item->id)); ?>" enctype="multipart/form-data">
<?php echo csrf_field(); ?>
<?php echo method_field('PUT'); ?>
<div class="card">
<div class="card-body">
<div class="row">
<div class="col-md-12">
<div class="form-group">
<label class="form-label"><?php echo app('translator')->get('Title'); ?></label>
<input type="text" name="title" value="<?php echo e($item->title); ?>" class="form-control" placeholder="<?php echo app('translator')->get('Title'); ?>">
</div>
<div class="form-group">
<div class="form-label"><?php echo app('translator')->get('Active'); ?></div>
<label class="custom-switch">
<?php if($item->is_active): ?>
<input type="checkbox" name="is_active" value="1" class="custom-switch-input" checked>
<?php else: ?>
<input type="checkbox" name="is_active" value="0" class="custom-switch-input" >
<?php endif; ?>
<span class="custom-switch-indicator"></span>
<span class="custom-switch-description"><?php echo app('translator')->get('Allow active page'); ?></span>
</label>
</div>
<div class="form-group">
<label class="form-label"><?php echo app('translator')->get('Slug'); ?></label>
<input type="text" name="slug" value="<?php echo e($item->slug); ?>" class="form-control" placeholder="<?php echo app('translator')->get('Slug'); ?>">
</div>
<div class="form-group">
<label class="form-label"><?php echo app('translator')->get('Description'); ?></label>
<textarea name="description" id="description_pages_website" rows="4" class="form-control"><?php echo e($item->description); ?></textarea>
</div>
</div>
</div>
</div>
<div class="card-footer">
<div class="d-flex">
<a href="<?php echo e(route('settings.pagewebsites.index')); ?>" class="btn btn-secondary"><?php echo app('translator')->get('Cancel'); ?></a>
<button class="btn btn-primary ml-auto"><?php echo app('translator')->get('Save'); ?></button>
</div>
</div>
</div>
</form>
</div>
</div>
<?php $__env->stopSection(); ?>
<?php echo $__env->make('core::layouts.app', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?><?php /**PATH /home/bouloter/public_html/Modules/PagesWebsite/Providers/../Resources/views/pagewebsites/edit.blade.php ENDPATH**/ ?>