Sh3ll
OdayForums


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/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : /home/tradze/www/storage/framework/views/0206af6df8c5f9c4b637616fc892a0ce75d4c350.php
<?php $__env->startSection('title'); ?>
    <?php if(isset($label)): ?>
        <?php echo e(trans("services::services.edit_label_title")); ?>

    <?php else: ?>
        <?php echo e(trans("services::services.create_label_title")); ?>

    <?php endif; ?>
<?php $__env->stopSection(); ?>

<?php $__env->startSection('css_page'); ?>
<link href="<?php echo e(asset('/themes/admin/assets/global/plugins/bootstrap-wysihtml5/bootstrap-wysihtml5.css')); ?>"
      rel="stylesheet">
<?php $__env->stopSection(); ?>


<?php $__env->startSection('content'); ?>
<!-- BEGIN PAGE HEADER-->
<div class="page-bar">
    <ul class="page-breadcrumb">
        <li>
            <i class="fa fa-home"></i>
            <a href="<?php echo url(''); ?>"><?php echo e(trans('general.breadcrumbs_home')); ?></a>
            <i class="fa fa-angle-right"></i>
        </li>
        <li>
            <a href="<?php echo route('admin.services.typeofservice.index'); ?>">Rapid Response</a>
            <i class="fa fa-angle-right"></i>
        </li>
        <li>
            <a href="<?php echo route('admin.services.typeofservice.index'); ?>">Services</a>
            <i class="fa fa-angle-right"></i>
        </li>
        <li>
            <?php if(isset($obj)): ?>
                <a href="#">Edit Service</a>
            <?php else: ?>
                <a href="#">Create New Service</a>
            <?php endif; ?>
        </li>
    </ul>
</div>
<!-- END PAGE HEADER-->

<!-- BEGIN PAGE CONTENT-->
<div class="row">
    <div class="col-md-12">

        <?php if(isset($obj)): ?>
        <?php echo Form::model($obj, array('url' => URL::to('admin/services/typeofservice') . '/' . $obj->id, 'method' => 'put', 'class' => 'bf form-horizontal', 'id' => 'service_add', 'files'=> true)); ?>

        <?php else: ?>
        <?php echo Form::open(array('url' => URL::to('admin/services/typeofservice'), 'method' => 'post', 'class' => 'bf form-horizontal', 'id' => 'service_add', 'files'=> true)); ?>

        <?php endif; ?>


        <div class="portlet">
            <div class="portlet-title">
                <div class="caption">
                    <?php if(isset($obj)): ?>
                        Edit Service
                    <?php else: ?>
                        Create New Service
                    <?php endif; ?>
                </div>
                <div class="actions btn-set">
                    <a href="<?php echo e(route('admin.services.typeofservice.index')); ?>" name="back" class="btn default"><i class="fa fa-angle-left"></i> <?php echo e(trans('general.action_back')); ?></a>
                    <button class="btn default" type="reset"><i class="fa fa-reply"></i> <?php echo e(trans('general.action_reset')); ?></button>
                    <button class="btn green" name="save" value="save"><i class="fa fa-check"></i> <?php echo e(trans('general.action_save')); ?></button>
                    <button class="btn blue" name="save_exit" value="save_exit"><?php echo e(trans('general.action_save_exit')); ?> <i class="fa fa-arrow-circle-right"></i></button>
                </div>
            </div>

            <!--form-->
            <div class="portlet-body">
                <?php echo $__env->make('flash::message', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?>

                <!--GENERAL-->

                <div class="portlet">

                    <div class="portlet-body">
                        <div class="row">
                            <div class="col-md-8">

                                <!--order-->
                                <div class="form-group <?php echo e($errors->has('name') ? 'has-error' : ''); ?>">
                                    <label class="control-label col-md-3">
                                        <?php echo e(trans('services::services.form_order_no')); ?>

                                        <span class="required" aria-required="true">*</span>
                                    </label>

                                    <div class="col-md-9">
                                        <?php echo Form::text('order_no', null, array('class' => 'form-control','placeholder'=>'Order of appearance')); ?>

                                        <span class="help-block"><?php echo e($errors->first('order_no', ':message')); ?></span>
                                    </div>
                                </div>
                                <!--end order-->

                                <!--name-->
                                <div class="form-group <?php echo e($errors->has('name') ? 'has-error' : ''); ?>">
                                    <label class="control-label col-md-3">
                                        <?php echo e(trans('services::services.form_name')); ?>

                                        <span class="required" aria-required="true">*</span>
                                    </label>

                                    <div class="col-md-9">
                                        <?php echo Form::text('name', null, array('class' => 'form-control','placeholder'=>'')); ?>

                                        <span class="help-block"><?php echo e($errors->first('name', ':message')); ?></span>
                                    </div>
                                </div>
                                <!--end name-->

                                <!--name-->
                                <div class="form-group <?php echo e($errors->has('search_keywords') ? 'has-error' : ''); ?>">
                                    <label class="control-label col-md-3">
                                        <?php echo e(trans('services::services.form_search_keywords')); ?>

                                        <!-- <span class="required" aria-required="true">*</span> -->
                                    </label>

                                    <div class="col-md-9">
                                        <?php echo Form::text('search_keywords', null, array('class' => 'form-control','placeholder'=>'')); ?>

                                        <span class="help-block"><?php echo e($errors->first('search_keywords', ':message')); ?></span>
                                    </div>
                                </div>
                                <!--end name-->

                                <!--service_type_-->
                                <div class="form-group <?php echo e($errors->has('service_type_id') ? 'has-error' : ''); ?>">
                                    <label class="control-label col-md-3">
                                        Service Type
                                        <span class="required" aria-required="true">*</span>
                                    </label>

                                    <div class="col-md-9">
                                        <?php if(isset($obj->service_type_id)): ?>
                                        <?php echo Form::select('service_type_id', array('1' => 'In Person'), $obj->service_type_id ,array('class' => 'form-control' ) ); ?>

                                        <?php else: ?>
                                        <?php echo Form::select('service_type_id', array('1' => 'In Person'), '1' ,array('class' => 'form-control' ) ); ?>

                                        <?php endif; ?>
                                        <span class="help-block"><?php echo e($errors->first('service_type', ':message')); ?></span>
                                    </div>
                                </div>
                                <!--end service_type-->

                                <!--is_massage_duration-->
                                <div style="display: none;" class="form-group <?php echo e($errors->has('is_massage') ? 'has-error' : ''); ?>">
                                    <label class="control-label col-md-3">
                                        <?php echo e(trans('services::services.form_is_massage')); ?>

                                    </label>
                                    <!-- Hidden field with value 0 in case checkbox is unchecked -->
                                    <?php echo Form::hidden('is_massage', 0, ['form' => 'service_add']); ?>

                                    <div class="col-md-9 checkbox-list">
                                        <label class="checkbox-inline">
                                            <?php echo Form::checkbox('is_massage', 1, null ,array('class' => 'form-control is-massage', 'form' => 'service_add' )); ?>

                                        </label>
                                        <span class="help-block"><?php echo e($errors->first('is_massage', ':message')); ?></span>
                                    </div>
                                </div>
                                <!--end is_massage_duration-->

                                <!--Parent Category-->
                                <div class="form-group <?php echo e($errors->has('parent_category_id') ? 'has-error' : ''); ?> parent-category">
                                    <label class="control-label col-md-3">
                                        Parent Category
                                        <span class="required" aria-required="true">*</span>
                                    </label>

                                    <div class="col-md-9">
                                        <?php if(isset($obj->parent_category_id)): ?>
                                        <?php echo Form::select('parent_category_id', $parent_category, $obj->parent_category_id,array('class' => 'form-control select2' )); ?>

                                        <?php else: ?>
                                        <?php echo Form::select('parent_category_id', $parent_category, 0,array('class' => 'form-control select2' )); ?>

                                        <?php endif; ?>
                                        <span class="help-block"><?php echo e($errors->first('parent_category_id', ':message')); ?></span>
                                    </div>
                                </div>
                                <!--end Parent Category-->

                                <!--subtitle-->
                                <div class="form-group <?php echo e($errors->has('subtitle') ? 'has-error' : ''); ?>">
                                    <label class="control-label col-md-3">
                                        <?php echo e(trans('services::services.form_subtitle')); ?>

                                        <span class="required" aria-required="true">*</span>
                                    </label>

                                    <div class="col-md-9">  
                                        <?php echo Form::text('subtitle', null, array('class' => 'form-control','placeholder'=>'')); ?>

                                        <span class="help-block"><?php echo e($errors->first('subtitle', ':message')); ?></span>
                                    </div>
                                </div>
                                <!--end subtitle-->

                                <!--body-->
                                <div class="form-group <?php echo e($errors->has('body') ? 'has-error' : ''); ?>">
                                    <label class="control-label col-md-3">
                                        Service Description
                                    </label>

                                    <div class="col-md-9">
                                        <?php echo Form::textarea('body', null, array('class' => 'form-control ckeditor','placeholder'=>'')); ?>

                                        <span class="help-block"><?php echo e($errors->first('body', ':message')); ?></span>
                                    </div>
                                </div>
                                <!--end body-->

                                <!--image-->
                                <div class="form-group <?php echo e($errors->has('image') ? 'has-error' : ''); ?>">
                                    <label class="control-label col-md-3"></label>
                                    <div class="col-md-9">
                                        <?php if(@$obj->image_file): ?>
                                        <div class="fileinput fileinput-exists" data-provides="fileinput">
                                            <div class="fileinput-preview thumbnail" data-trigger="fileinput" style="width: 200px; height: 150px; line-height: 150px;">
                                           
                                            <img src="data:image/jpeg;base64,<?php echo e(base64_encode($obj->image_file)); ?>" alt=""/>
                                            </div>
                                            <div>
                                                <span class="btn default btn-file">
                                                    <span class="fileinput-new">Select image </span>
                                                    <span class="fileinput-exists">Change </span>
                                                    <input type="hidden" value="" name="">
                                                    <input type="file" name="image">
                                                </span>
                                                <a href="#" class="btn red fileinput-exists" data-dismiss="fileinput">Remove </a>
                                            </div>
                                        </div>
                                        <?php else: ?>
                                        <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&amp;text=no+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="image">
                                                </span>
                                                <a href="#" class="btn default fileinput-exists" data-dismiss="fileinput">Remove </a>
                                            </div>
                                        </div>
                                        <?php endif; ?>
                                    </div>
                                </div>
                                <!--end image-->
                            <!--end row left-->
                        </div>
                        </div>
                    </div>

                <!--END GENERAL-->

            </div>
            <!--/form-->

            <!--actions-->
            <div class="portlet-title">
                <div class="actions btn-set">
                    <a href="<?php echo e(route('admin.services.typeofservice.index')); ?>" name="back" class="btn default"><i class="fa fa-angle-left"></i> <?php echo e(trans('general.action_back')); ?></a>
                    <button class="btn default" type="reset"><i class="fa fa-reply"></i> <?php echo e(trans('general.action_reset')); ?></button>
                    <button class="btn green" name="save" value="save"><i class="fa fa-check"></i> <?php echo e(trans('general.action_save')); ?></button>
                    <button class="btn blue" name="save_exit" value="save_exit"><?php echo e(trans('general.action_save_exit')); ?> <i class="fa fa-arrow-circle-right"></i></button>
                </div>
            </div>
            <!--/actions-->
        </div>
        <?php echo Form::close(); ?>


    </div>
</div>
<!-- END PAGE CONTENT-->
<?php $__env->stopSection(); ?>


<?php $__env->startSection('scripts_page'); ?>
<?php echo \Illuminate\View\Factory::parentPlaceholder('scripts_page'); ?>
<script src="<?php echo e(asset('/themes/admin/assets/global/plugins/bootstrap-wysihtml5/wysihtml5-0.3.0.js')); ?>"
        type="text/javascript"></script>
<script src="<?php echo e(asset('/themes/admin/assets/global/plugins/bootstrap-wysihtml5/bootstrap-wysihtml5.js')); ?>"
        type="text/javascript"></script>
<!-- <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script> -->
  <!-- JavaScript and JQuery -->
  <script>
    $(document).ready(function(e){
      $(".is-massage").change(function(){
        if($('.is-massage').is(':checked')){
            $(".parent-category").hide();
        } else {
            $(".parent-category").show();
        }
        });
    });
  </script>
<?php $__env->stopSection(); ?>


<?php echo $__env->make('admin.layouts.form', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?><?php /**PATH /home/tradze/public_html/app/Modules/Services/Resources/Views/admin/servicetype_create_edit.blade.php ENDPATH**/ ?>

ZeroDay Forums Mini