����JFIF��x�x����'
Server IP : 66.29.137.217 / Your IP : 18.217.160.127 Web Server : LiteSpeed System : Linux premium294.web-hosting.com 4.18.0-513.11.1.lve.el8.x86_64 #1 SMP Thu Jan 18 16:21:02 UTC 2024 x86_64 User : gltevjme ( 1095) PHP Version : 7.0.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/gltevjme/gle.gltechlimited.com/resources/views/admin/ |
Upload File : |
@extends('layouts.admin') @section('content') <div class="admin-form-main-block mrg-t-40"> <h4 class="admin-form-text">SEO</h4> @if ($button) {!! Form::model($button, ['method' => 'PATCH', 'action' => ['ButtonController@update', $button->id], 'files' => true]) !!} <div class="bootstrap-checkbox form-group{{ $errors->has('goto') ? ' has-error' : '' }}"> <div class="row"> <div class="col-md-7"> <h5 class="bootstrap-switch-label">Go to Top</h5> </div> <div class="col-md-5 pad-0"> <div class="make-switch"> {!! Form::checkbox('goto', 1, ($button->goto == 1 ? true : false), ['class' => 'bootswitch', "data-on-text"=>"1", "data-off-text"=>"0", "data-size"=>"small"]) !!} </div> </div> </div> <div class="col-md-12"> <small class="text-danger">{{ $errors->first('goto') }}</small> </div> </div> <div class="bootstrap-checkbox form-group{{ $errors->has('color') ? ' has-error' : '' }}"> <div class="row"> <div class="col-md-7"> <h5 class="bootstrap-switch-label">Color Schemes</h5> </div> <div class="col-md-5 pad-0"> <div class="make-switch"> {!! Form::checkbox('color', 1, ($button->color == 1 ? true : false), ['class' => 'bootswitch', "data-on-text"=>"Light", "data-off-text"=>"Dark", "data-size"=>"small"]) !!} </div> </div> </div> <div class="col-md-12"> <small class="text-danger">{{ $errors->first('inspect') }}</small> </div> </div> <div class="bootstrap-checkbox form-group{{ $errors->has('inspect') ? ' has-error' : '' }}"> <div class="row"> <div class="col-md-7"> <h5 class="bootstrap-switch-label">Inspect</h5> </div> <div class="col-md-5 pad-0"> <div class="make-switch"> {!! Form::checkbox('inspect', 1, ($button->inspect == 1 ? true : false), ['class' => 'bootswitch', "data-on-text"=>"1", "data-off-text"=>"0", "data-size"=>"small"]) !!} </div> </div> </div> <div class="col-md-12"> <small class="text-danger">{{ $errors->first('inspect') }}</small> </div> </div> <div class="bootstrap-checkbox form-group{{ $errors->has('rightclick') ? ' has-error' : '' }}"> <div class="row"> <div class="col-md-7"> <h5 class="bootstrap-switch-label">Rightclick Disable</h5> </div> <div class="col-md-5 pad-0"> <div class="make-switch"> {!! Form::checkbox('rightclick', 1, ($button->rightclick == 1 ? true : false), ['class' => 'bootswitch', "data-on-text"=>"On", "data-off-text"=>"OFF", "data-size"=>"small"]) !!} </div> </div> </div> <div class="col-md-12"> <small class="text-danger">{{ $errors->first('rightclick') }}</small> </div> </div> {!! Form::close() !!} @endif </div> @endsection @section('custom-script') <script> $(function () { CKEDITOR.replace('editor1'); }); </script> @endsection