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/public_html/dev/storage/framework/views/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : /home/tradze/public_html/dev/storage/framework/views/3706492ecf5c3e54b7f50e67e2157a732af839ef.php
<?php $__env->startSection('title'); ?>
    <?php if(isset($label)): ?>
        Edit Review
    <?php else: ?>
        New Review
    <?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.testimonials.index'); ?>"><?php echo e(trans('testimonials::testimonials.breadcrumbs_title')); ?></a>
            <i class="fa fa-angle-right"></i>
        </li>
        <li>
            <a href="<?php echo route('admin.testimonials.index'); ?>">Reviews</a>
            <i class="fa fa-angle-right"></i>
        </li>
        <li>
            <?php if(isset($obj)): ?>
                <a href="#">Edit Review</a>
            <?php else: ?>
                <a href="#">New review</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/reviews') . '/' . $obj->id, 'method' => 'put', 'class' => 'bf form-horizontal', 'files'=> true)); ?>

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

        <?php endif; ?>


        <div class="portlet">
            <div class="portlet-title">
                <div class="caption">
                    <?php if(isset($obj)): ?>
                        Edit Review
                    <?php else: ?>
                        New review
                    <?php endif; ?>
                </div>
                <div class="actions btn-set">
                    <a href="<?php echo e(route('admin.reviews.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', array_except(get_defined_vars(), array('__data', '__path')))->render(); ?>

                <!--GENERAL-->

                <div class="portlet">

                    <div class="portlet-body">
                        <div class="row">
                            <?php /* <?php if(Auth::user()->hasRole('developer')): ?> */ ?>
                            <div class="col-md-6">

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

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

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

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

                                    <div class="col-md-9">
                                        <?php echo Form::select('therapist_id', $therapists, (isset($obj) && isset($obj->therapist_id)) ? $obj->therapist_id : 0, ['class' => 'form-control']); ?>

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

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

                                    <div class="col-md-9">
                                        <?php echo Form::number('salon_rating', null, array('class' => 'form-control','placeholder'=>'', 'min'=>0, 'max' => 5)); ?>

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

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

                                    <div class="col-md-9">
                                        <?php echo Form::number('atmosphere', null, array('class' => 'form-control','placeholder'=>'', 'min'=>0, 'max' => 5)); ?>

                                        <span class="help-block"><?php echo e($errors->first('atmosphere', ':message')); ?></span>
                                    </div>
                                </div>
                                <!--end atmosphere-->
                                <!--sanitation-->
                                <div class="form-group <?php echo e($errors->has('sanitation') ? 'has-error' : ''); ?>">
                                    <label class="control-label col-md-3">
                                        Sanitation
                                    </label>

                                    <div class="col-md-9">
                                        <?php echo Form::number('sanitation', null, array('class' => 'form-control','placeholder'=>'', 'min'=>0, 'max' => 5)); ?>

                                        <span class="help-block"><?php echo e($errors->first('sanitation', ':message')); ?></span>
                                    </div>
                                </div>
                                <!--end sanitation-->
                                <!--employees-->
                                <div class="form-group <?php echo e($errors->has('employees') ? 'has-error' : ''); ?>">
                                    <label class="control-label col-md-3">
                                        Employees
                                    </label>

                                    <div class="col-md-9">
                                        <?php echo Form::number('employees', null, array('class' => 'form-control','placeholder'=>'', 'min'=>0, 'max' => 5)); ?>

                                        <span class="help-block"><?php echo e($errors->first('employees', ':message')); ?></span>
                                    </div>
                                </div>
                                <!--end employees-->
                                <!--satisfaction-->
                                <div class="form-group <?php echo e($errors->has('satisfaction') ? 'has-error' : ''); ?>">
                                    <label class="control-label col-md-3">
                                        satisfaction
                                    </label>

                                    <div class="col-md-9">
                                        <?php echo Form::number('satisfaction', null, array('class' => 'form-control','placeholder'=>'', 'min'=>0, 'max' => 5)); ?>

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

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

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

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

                            </div>
                            <!--end row left-->
                            <?php /* <?php endif; ?> */ ?>
                            <!--col right-->
                            <div class="col-md-6">
                                <!--is_default-->
                                <div class="form-group <?php echo e($errors->has('is_approved') ? 'has-error' : ''); ?>">
                                    <label class="control-label col-md-3">
                                        Is Approved
                                    </label>

                                    <div class="col-md-9 checkbox-list">
                                        <label class="checkbox-inline">
                                            <?php echo Form::checkbox('is_approved', 1, null); ?>

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

                            </div>
                            <!--end col right-->
                        </div>
                    </div>
                </div>

                <!--END GENERAL-->

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

            <!--actions-->
            <div class="portlet-title">
                <div class="actions btn-set">
                    <a href="<?php echo e(route('admin.reviews.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'); ?>
@parent
<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>
    $(".form_meridian_datetime").datepicker({
        isRTL: Metronic.isRTL(),
        format: "dd MM yyyy",
        autoclose: true,
    });
</script>
<?php $__env->stopSection(); ?>


<?php echo $__env->make('admin.layouts.form', array_except(get_defined_vars(), array('__data', '__path')))->render(); ?>

ZeroDay Forums Mini