Fixes jquery http links

Changes
http://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js
into
https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js

to help in SSL compatibility and avoir mixed content on jquery
This commit is contained in:
Old-Fart
2016-07-12 16:52:11 -04:00
parent 84ea8bf4ad
commit 60f523cc1e
12 changed files with 84 additions and 84 deletions

View File

@@ -282,7 +282,7 @@
<td class="mailbox-star"><a href="#"><i class="fa fa-star text-yellow"></i></a></td> <td class="mailbox-star"><a href="#"><i class="fa fa-star text-yellow"></i></a></td>
@foreach($threads as $thread) @foreach($threads as $thread)
<td class="mailbox-name"><a href="timeline.html">{{$thread->ticket_subject}}</a></td> <td class="mailbox-name"><a href="timeline.html">{{$thread->ticket_subject}}</a></td>
<td class="mailbox-Id">{{$thread->ticket_id}}</td> <td class="mailbox-Id">{{$thread->ticket_id}}</td>
@endforeach @endforeach
<td class="mailbox-last-reply">client</td> <td class="mailbox-last-reply">client</td>
@@ -343,7 +343,7 @@
<div class="box-footer no-padding"> <div class="box-footer no-padding">
<div class="mailbox-controls"> <div class="mailbox-controls">
<!-- Check all button --> <!-- Check all button -->
<button class="btn btn-default btn-sm checkbox-toggle"><i class="fa fa-square-o"></i></button> <button class="btn btn-default btn-sm checkbox-toggle"><i class="fa fa-square-o"></i></button>
<div class="btn-group"> <div class="btn-group">
<button class="btn btn-default btn-sm"><i class="fa fa-trash-o"></i></button> <button class="btn btn-default btn-sm"><i class="fa fa-trash-o"></i></button>
<button class="btn btn-default btn-sm"><i class="fa fa-reply"></i></button> <button class="btn btn-default btn-sm"><i class="fa fa-reply"></i></button>
@@ -372,8 +372,8 @@
</footer> </footer>
</div><!-- ./wrapper --> </div><!-- ./wrapper -->
<!-- jQuery 2.1.3 --> <!-- jQuery 2.1.1 -->
<script src="http://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script> <script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<!-- Bootstrap 3.3.2 JS --> <!-- Bootstrap 3.3.2 JS -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/js/bootstrap.min.js" type="text/javascript"></script> <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/js/bootstrap.min.js" type="text/javascript"></script>
<!-- Slimscroll --> <!-- Slimscroll -->

View File

@@ -30,10 +30,10 @@
<link href="{{asset("lb-faveo/css/editor.css")}}" rel="stylesheet" type="text/css"> <link href="{{asset("lb-faveo/css/editor.css")}}" rel="stylesheet" type="text/css">
<script src="{{asset("lb-faveo/plugins/filebrowser/plugin.js")}}" type="text/javascript"></script> <script src="{{asset("lb-faveo/plugins/filebrowser/plugin.js")}}" type="text/javascript"></script>
<link href="{{asset("lb-faveo/plugins/bootstrap-wysihtml5/bootstrap3-wysihtml5.min.css")}}" rel="stylesheet" type="text/css" /> <link href="{{asset("lb-faveo/plugins/bootstrap-wysihtml5/bootstrap3-wysihtml5.min.css")}}" rel="stylesheet" type="text/css" />
<link href="{{asset("lb-faveo/plugins/datatables/dataTables.bootstrap.css")}}" rel="stylesheet"> <link href="{{asset("lb-faveo/plugins/datatables/dataTables.bootstrap.css")}}" rel="stylesheet">
{{-- // <script src="https://code.jquery.com/jquery-2.1.4.js" type="text/javascript"></script> --}} {{-- // <script src="https://code.jquery.com/jquery-2.1.4.js" type="text/javascript"></script> --}}
<script src="{{asset("lb-faveo/js/jquery-2.1.4.js")}}" type="text/javascript"></script> <script src="{{asset("lb-faveo/js/jquery-2.1.4.js")}}" type="text/javascript"></script>
{{-- // <script src="http://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script> --}} {{-- // <script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script> --}}
<script src="{{asset("lb-faveo/js/jquery2.1.1.min.js")}}" type="text/javascript"></script> <script src="{{asset("lb-faveo/js/jquery2.1.1.min.js")}}" type="text/javascript"></script>
<!--[if lt IE 9]> <!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script> <script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
@@ -78,7 +78,7 @@
<ul class="nav navbar-nav navbar-left"> <ul class="nav navbar-nav navbar-left">
@if($replacetop==0) @if($replacetop==0)
<li @yield('settings')><a href="{!! url('dashboard') !!}">{!! Lang::get('lang.agent_panel') !!}</a></li> <li @yield('settings')><a href="{!! url('dashboard') !!}">{!! Lang::get('lang.agent_panel') !!}</a></li>
@else @else
<?php \Event::fire('service.desk.admin.topbar', array()); ?> <?php \Event::fire('service.desk.admin.topbar', array()); ?>
@endif @endif
</ul> </ul>
@@ -159,7 +159,7 @@
<img src="{{Auth::user()->profile_pic}}"class="user-image" alt="User Image"/> <img src="{{Auth::user()->profile_pic}}"class="user-image" alt="User Image"/>
<span class="hidden-xs">{!! Auth::user()->first_name." ".Auth::user()->last_name !!}</span> <span class="hidden-xs">{!! Auth::user()->first_name." ".Auth::user()->last_name !!}</span>
@endif @endif
</a> </a>
<ul class="dropdown-menu"> <ul class="dropdown-menu">
<!-- User image --> <!-- User image -->
@@ -401,7 +401,7 @@ $(function () {
$("textarea").wysihtml5(); $("textarea").wysihtml5();
}); });
// $(function(){ // $(function(){
// $("#checkUpdate").on('click',function(){ // $("#checkUpdate").on('click',function(){
// $.ajax({ // $.ajax({
// type: "GET", // type: "GET",
// url: "{!! URL::route('version-check') !!}", // url: "{!! URL::route('version-check') !!}",

View File

@@ -28,7 +28,7 @@
<link href="{{asset("lb-faveo/plugins/filebrowser/plugin.js")}}" rel="stylesheet" type="text/css" /> <link href="{{asset("lb-faveo/plugins/filebrowser/plugin.js")}}" rel="stylesheet" type="text/css" />
<link type="text/css" href="{{asset("lb-faveo/css/jquery.ui.css")}}" rel="stylesheet"> <link type="text/css" href="{{asset("lb-faveo/css/jquery.ui.css")}}" rel="stylesheet">
<link type="text/css" href="{{asset("lb-faveo/plugins/datatables/dataTables.bootstrap.css")}}" rel="stylesheet"> <link type="text/css" href="{{asset("lb-faveo/plugins/datatables/dataTables.bootstrap.css")}}" rel="stylesheet">
<link href="{{asset("lb-faveo/plugins/bootstrap-wysihtml5/bootstrap3-wysihtml5.min.css")}}" rel="stylesheet" type="text/css" /> <link href="{{asset("lb-faveo/plugins/bootstrap-wysihtml5/bootstrap3-wysihtml5.min.css")}}" rel="stylesheet" type="text/css" />
<link rel="stylesheet" type="text/css" href="{{asset("lb-faveo/css/faveo-css.css")}}"> <link rel="stylesheet" type="text/css" href="{{asset("lb-faveo/css/faveo-css.css")}}">
<link rel="stylesheet" type="text/css" href="{{asset("lb-faveo/css/notification-style.css")}}"> <link rel="stylesheet" type="text/css" href="{{asset("lb-faveo/css/notification-style.css")}}">
@@ -52,7 +52,7 @@
<?php <?php
$company = App\Model\helpdesk\Settings\Company::where('id', '=', '1')->first(); $company = App\Model\helpdesk\Settings\Company::where('id', '=', '1')->first();
if ($company != null) { if ($company != null) {
} }
$replacetop = 0; $replacetop = 0;
$replacetop = \Event::fire('service.desk.agent.topbar.replace', array()); $replacetop = \Event::fire('service.desk.agent.topbar.replace', array());
@@ -90,7 +90,7 @@
<li @yield('Users')><a data-target="#tabB" href="#">{!! Lang::get('lang.users') !!}</a></li> <li @yield('Users')><a data-target="#tabB" href="#">{!! Lang::get('lang.users') !!}</a></li>
<li @yield('Tickets')><a data-target="#tabC" href="#">{!! Lang::get('lang.tickets') !!}</a></li> <li @yield('Tickets')><a data-target="#tabC" href="#">{!! Lang::get('lang.tickets') !!}</a></li>
<li @yield('Tools')><a data-target="#tabD" href="#">{!! Lang::get('lang.tools') !!}</a></li> <li @yield('Tools')><a data-target="#tabD" href="#">{!! Lang::get('lang.tools') !!}</a></li>
@else @else
<?php \Event::fire('service.desk.agent.topbar', array()); ?> <?php \Event::fire('service.desk.agent.topbar', array()); ?>
@endif @endif
</ul> </ul>
@@ -171,12 +171,12 @@
@if(Auth::user()) @if(Auth::user())
<img src="{{Auth::user()->profile_pic}}"class="user-image" alt="User Image"/> <img src="{{Auth::user()->profile_pic}}"class="user-image" alt="User Image"/>
<span class="hidden-xs">{{Auth::user()->first_name." ".Auth::user()->last_name}}</span> <span class="hidden-xs">{{Auth::user()->first_name." ".Auth::user()->last_name}}</span>
@endif @endif
</a> </a>
<ul class="dropdown-menu"> <ul class="dropdown-menu">
<!-- User image --> <!-- User image -->
<li class="user-header" style="background-color:#343F44;"> <li class="user-header" style="background-color:#343F44;">
<img src="{{Auth::user()->profile_pic}}" class="img-circle" alt="User Image" /> <img src="{{Auth::user()->profile_pic}}" class="img-circle" alt="User Image" />
<p> <p>
{{Auth::user()->first_name." ".Auth::user()->last_name}} - {{Auth::user()->role}} {{Auth::user()->first_name." ".Auth::user()->last_name}} - {{Auth::user()->role}}
<small></small> <small></small>
@@ -367,7 +367,7 @@
<?php <?php
$agent_group = Auth::user()->assign_group; $agent_group = Auth::user()->assign_group;
$group = App\Model\helpdesk\Agent\Groups::where('id', '=', $agent_group)->where('group_status', '=', '1')->first(); $group = App\Model\helpdesk\Agent\Groups::where('id', '=', $agent_group)->where('group_status', '=', '1')->first();
// dd($group); // dd($group);
?> ?>
<!-- Right side column. Contains the navbar and content of the page --> <!-- Right side column. Contains the navbar and content of the page -->
<div class="content-wrapper"> <div class="content-wrapper">
@@ -435,7 +435,7 @@
<strong>{!! Lang::get('lang.copyright') !!} &copy; {!! date('Y') !!} <a href="{!! $company->website !!}" target="_blank">{!! $company->company_name !!}</a>.</strong> {!! Lang::get('lang.all_rights_reserved') !!}. {!! Lang::get('lang.powered_by') !!} <a href="http://www.faveohelpdesk.com/" target="_blank">Faveo</a> <strong>{!! Lang::get('lang.copyright') !!} &copy; {!! date('Y') !!} <a href="{!! $company->website !!}" target="_blank">{!! $company->company_name !!}</a>.</strong> {!! Lang::get('lang.all_rights_reserved') !!}. {!! Lang::get('lang.powered_by') !!} <a href="http://www.faveohelpdesk.com/" target="_blank">Faveo</a>
</footer> </footer>
</div><!-- ./wrapper --> </div><!-- ./wrapper -->
{{-- // <script src="http://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script> --}} {{-- // <script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script> --}}
<script src="{{asset("lb-faveo/js/ajax-jquery.min.js")}}"></script> <script src="{{asset("lb-faveo/js/ajax-jquery.min.js")}}"></script>

View File

@@ -28,7 +28,7 @@
<link href="{{asset("lb-faveo/plugins/filebrowser/plugin.js")}}" rel="stylesheet" type="text/css" /> <link href="{{asset("lb-faveo/plugins/filebrowser/plugin.js")}}" rel="stylesheet" type="text/css" />
<link type="text/css" href="{{asset("lb-faveo/css/jquery.ui.css")}}" rel="stylesheet"> <link type="text/css" href="{{asset("lb-faveo/css/jquery.ui.css")}}" rel="stylesheet">
<link type="text/css" href="{{asset("lb-faveo/plugins/datatables/dataTables.bootstrap.css")}}" rel="stylesheet"> <link type="text/css" href="{{asset("lb-faveo/plugins/datatables/dataTables.bootstrap.css")}}" rel="stylesheet">
<link href="{{asset("lb-faveo/plugins/bootstrap-wysihtml5/bootstrap3-wysihtml5.min.css")}}" rel="stylesheet" type="text/css" /> <link href="{{asset("lb-faveo/plugins/bootstrap-wysihtml5/bootstrap3-wysihtml5.min.css")}}" rel="stylesheet" type="text/css" />
<link rel="stylesheet" type="text/css" href="{{asset("lb-faveo/css/faveo-css.css")}}"> <link rel="stylesheet" type="text/css" href="{{asset("lb-faveo/css/faveo-css.css")}}">
<link rel="stylesheet" type="text/css" href="{{asset("lb-faveo/css/notification-style.css")}}"> <link rel="stylesheet" type="text/css" href="{{asset("lb-faveo/css/notification-style.css")}}">
@@ -114,18 +114,18 @@ if ($company != null) {
<li class="dropdown user user-menu"> <li class="dropdown user user-menu">
<a href="#" class="dropdown-toggle" data-toggle="dropdown"> <a href="#" class="dropdown-toggle" data-toggle="dropdown">
@if(Auth::user()) @if(Auth::user())
<img src="{{Auth::user()->profile_pic}}"class="user-image" alt="User Image"/> <img src="{{Auth::user()->profile_pic}}"class="user-image" alt="User Image"/>
<span class="hidden-xs">{{Auth::user()->first_name." ".Auth::user()->last_name}}</span> <span class="hidden-xs">{{Auth::user()->first_name." ".Auth::user()->last_name}}</span>
@endif @endif
</a> </a>
<ul class="dropdown-menu"> <ul class="dropdown-menu">
<!-- User image --> <!-- User image -->
<li class="user-header" style="background-color:#343F44;"> <li class="user-header" style="background-color:#343F44;">
<img src="{{Auth::user()->profile_pic}}" class="img-circle" alt="User Image" /> <img src="{{Auth::user()->profile_pic}}" class="img-circle" alt="User Image" />
<p> <p>
{{Auth::user()->first_name." ".Auth::user()->last_name}} - {{Auth::user()->role}} {{Auth::user()->first_name." ".Auth::user()->last_name}} - {{Auth::user()->role}}
<small></small> <small></small>
@@ -159,9 +159,9 @@ if ($company != null) {
<div class="col-xs-3"></div> <div class="col-xs-3"></div>
<div class="col-xs-2" style="width:50%;"> <div class="col-xs-2" style="width:50%;">
<a href="{!! url('profile') !!}"> <a href="{!! url('profile') !!}">
<img src="{{Auth::user()->profile_pic}}" class="img-circle" alt="User Image" /> <img src="{{Auth::user()->profile_pic}}" class="img-circle" alt="User Image" />
</a> </a>
</div> </div>
</div> </div>
@@ -366,10 +366,10 @@ $group = App\Model\helpdesk\Agent\Groups::where('id', '=', $agent_group)->where(
<strong>{!! Lang::get('lang.copyright') !!} &copy; {!! date('Y') !!} <a href="{!! $company->website !!}" target="_blank">{!! $company->company_name !!}</a>.</strong> {!! Lang::get('lang.all_rights_reserved') !!}. {!! Lang::get('lang.powered_by') !!} <a href="http://www.faveohelpdesk.com/" target="_blank">Faveo</a> <strong>{!! Lang::get('lang.copyright') !!} &copy; {!! date('Y') !!} <a href="{!! $company->website !!}" target="_blank">{!! $company->company_name !!}</a>.</strong> {!! Lang::get('lang.all_rights_reserved') !!}. {!! Lang::get('lang.powered_by') !!} <a href="http://www.faveohelpdesk.com/" target="_blank">Faveo</a>
</footer> </footer>
</div><!-- ./wrapper --> </div><!-- ./wrapper -->
{{-- // <script src="http://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script> --}} {{-- // <script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script> --}}
<script src="{{asset("lb-faveo/js/ajax-jquery.min.js")}}"></script> <script src="{{asset("lb-faveo/js/ajax-jquery.min.js")}}"></script>
{{-- // <script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/bootstrap-datetimepicker/4.7.14/js/bootstrap-datetimepicker.min.js"></script> --}} {{-- // <script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/bootstrap-datetimepicker/4.7.14/js/bootstrap-datetimepicker.min.js"></script> --}}
<script src="{{asset("lb-faveo/js/bootstrap-datetimepicker4.7.14.min.js")}}" type="text/javascript"></script> <script src="{{asset("lb-faveo/js/bootstrap-datetimepicker4.7.14.min.js")}}" type="text/javascript"></script>
@@ -392,10 +392,10 @@ $group = App\Model\helpdesk\Agent\Groups::where('id', '=', $agent_group)->where(
<script src="{{asset("lb-faveo/plugins/datatables/dataTables.bootstrap.js")}}" type="text/javascript"></script> <script src="{{asset("lb-faveo/plugins/datatables/dataTables.bootstrap.js")}}" type="text/javascript"></script>
<script src="{{asset("lb-faveo/plugins/datatables/jquery.dataTables.js")}}" type="text/javascript"></script> <script src="{{asset("lb-faveo/plugins/datatables/jquery.dataTables.js")}}" type="text/javascript"></script>
<!-- Page Script --> <!-- Page Script -->
{{-- // <script type="text/javascript" src="https://cdn.datatables.net/1.10.10/js/jquery.dataTables.min.js"></script> --}} {{-- // <script type="text/javascript" src="https://cdn.datatables.net/1.10.10/js/jquery.dataTables.min.js"></script> --}}
<script type="text/javascript" src="{{asset("lb-faveo/js/jquery.dataTables1.10.10.min.js")}}"></script> <script type="text/javascript" src="{{asset("lb-faveo/js/jquery.dataTables1.10.10.min.js")}}"></script>
<script type="text/javascript" src="{{asset("lb-faveo/plugins/datatables/dataTables.bootstrap.js")}}"></script> <script type="text/javascript" src="{{asset("lb-faveo/plugins/datatables/dataTables.bootstrap.js")}}"></script>
<script src="{{asset("lb-faveo/js/jquery.rating.pack.js")}}" type="text/javascript"></script> <script src="{{asset("lb-faveo/js/jquery.rating.pack.js")}}" type="text/javascript"></script>
@@ -410,7 +410,7 @@ $group = App\Model\helpdesk\Agent\Groups::where('id', '=', $agent_group)->where(
</script> </script>
<script> <script>
$(document).ready(function () { $(document).ready(function () {
$('.noti_User').click(function () { $('.noti_User').click(function () {
var id = this.id; var id = this.id;
var dataString = 'id=' + id; var dataString = 'id=' + id;

View File

@@ -12,7 +12,7 @@
<link href="http://code.ionicframework.com/ionicons/2.0.0/css/ionicons.min.css" rel="stylesheet" type="text/css" /> <link href="http://code.ionicframework.com/ionicons/2.0.0/css/ionicons.min.css" rel="stylesheet" type="text/css" />
<!-- fullCalendar 2.2.5--> <!-- fullCalendar 2.2.5-->
<link href="{{asset("lb-faveo/plugins/fullcalendar/fullcalendar.min.css")}}" rel="stylesheet" type="text/css" /> <link href="{{asset("lb-faveo/plugins/fullcalendar/fullcalendar.min.css")}}" rel="stylesheet" type="text/css" />
<link href="{{asset("lb-faveo/plugins/fullcalendar/fullcalendar.print.css")}}" rel="stylesheet" type="text/css" media='print' /> <link href="{{asset("lb-faveo/plugins/fullcalendar/fullcalendar.print.css")}}" rel="stylesheet" type="text/css" media='print' />
<!-- Theme style --> <!-- Theme style -->
<link href="{{asset("lb-faveo/dist/css/AdminLTE.min.css")}}" rel="stylesheet" type="text/css" /> <link href="{{asset("lb-faveo/dist/css/AdminLTE.min.css")}}" rel="stylesheet" type="text/css" />
@@ -23,19 +23,19 @@
<link href="{{asset("lb-faveo/plugins/iCheck/flat/blue.css")}}" rel="stylesheet" type="text/css" /> <link href="{{asset("lb-faveo/plugins/iCheck/flat/blue.css")}}" rel="stylesheet" type="text/css" />
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries --> <!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<link rel="stylesheet" href="{{asset("lb-faveo/dist/css/tabby.css")}}" type="text/css"> <link rel="stylesheet" href="{{asset("lb-faveo/dist/css/tabby.css")}}" type="text/css">
<link href="http://www.jqueryscript.net/css/jquerysctipttop.css" rel="stylesheet" type="text/css"> <link href="http://www.jqueryscript.net/css/jquerysctipttop.css" rel="stylesheet" type="text/css">
<link type="text/css" href="http://code.jquery.com/ui/1.9.1/themes/redmond/jquery-ui.css" rel="stylesheet"> <link type="text/css" href="http://code.jquery.com/ui/1.9.1/themes/redmond/jquery-ui.css" rel="stylesheet">
<link href="http://www.jqueryscript.net/css/jquerysctipttop.css" rel="stylesheet" type="text/css"> <link href="http://www.jqueryscript.net/css/jquerysctipttop.css" rel="stylesheet" type="text/css">
<script type="text/javascript" src="//cdn.datatables.net/1.10.0/js/jquery.dataTables.js"></script> <script type="text/javascript" src="//cdn.datatables.net/1.10.0/js/jquery.dataTables.js"></script>
<link href="{{asset("lb-faveo/plugins/filebrowser/plugin.js")}}" rel="stylesheet" type="text/css" /> <link href="{{asset("lb-faveo/plugins/filebrowser/plugin.js")}}" rel="stylesheet" type="text/css" />
<script src="http://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script> <script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<script type="text/javascript" src="{{asset('lb-faveo/dist/js/nicEdit.js')}}"></script> <script type="text/javascript" src="{{asset('lb-faveo/dist/js/nicEdit.js')}}"></script>
@yield('HeadInclude') @yield('HeadInclude')
@@ -74,7 +74,7 @@
@else @else
<img src="{{ Gravatar::src(Auth::user()->email) }}" class="user-image" alt="User Image"> <img src="{{ Gravatar::src(Auth::user()->email) }}" class="user-image" alt="User Image">
@endif @endif
@endif @endif
<span class="hidden-xs">{!! Auth::user()->firstname." ".Auth::user()->lastname !!}</span> <span class="hidden-xs">{!! Auth::user()->firstname." ".Auth::user()->lastname !!}</span>
</a> </a>
<ul class="dropdown-menu"> <ul class="dropdown-menu">
@@ -86,7 +86,7 @@
@else @else
<img src="{{ Gravatar::src(Auth::user()->email) }}" class="img-circle" alt="User Image"> <img src="{{ Gravatar::src(Auth::user()->email) }}" class="img-circle" alt="User Image">
@endif @endif
@endif @endif
<p> <p>
<span class="hidden-xs">{!! Auth::user()->firstname." ".Auth::user()->lastname !!}</span> <span class="hidden-xs">{!! Auth::user()->firstname." ".Auth::user()->lastname !!}</span>
</p> </p>
@@ -241,8 +241,8 @@
</footer> </footer>
</div><!-- ./wrapper --> </div><!-- ./wrapper -->
<!-- jQuery 2.1.3 --> <!-- jQuery 2.1.1 -->
<script src="http://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script> <script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<!-- Bootstrap 3.3.2 JS --> <!-- Bootstrap 3.3.2 JS -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/js/bootstrap.min.js" type="text/javascript"></script> <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/js/bootstrap.min.js" type="text/javascript"></script>
@@ -256,9 +256,9 @@
<script src="{{asset("lb-faveo/dist/js/app.min.js")}}" type="text/javascript"></script> <script src="{{asset("lb-faveo/dist/js/app.min.js")}}" type="text/javascript"></script>
<!-- iCheck --> <!-- iCheck -->
<script src="{{asset("lb-faveo/plugins/iCheck/icheck.min.js")}}" type="text/javascript"></script> <script src="{{asset("lb-faveo/plugins/iCheck/icheck.min.js")}}" type="text/javascript"></script>
<script type="text/javascript" src="js/jquery.maskedinput.min.js"></script> <script type="text/javascript" src="js/jquery.maskedinput.min.js"></script>
<script src="{{asset("lb-faveo/plugins/filebrowser/plugin.js")}}"></script> <script src="{{asset("lb-faveo/plugins/filebrowser/plugin.js")}}"></script>
<!-- Bootstrap WYSIHTML5 --> <!-- Bootstrap WYSIHTML5 -->
<script src="{{asset('lb-faveo/plugins/bootstrap-wysihtml5/bootstrap3-wysihtml5.all.min.js')}}" type="text/javascript"></script> <script src="{{asset('lb-faveo/plugins/bootstrap-wysihtml5/bootstrap3-wysihtml5.all.min.js')}}" type="text/javascript"></script>

View File

@@ -36,7 +36,7 @@
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script> <script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
<script src="https://oss.maxcdn.com/libs/respond.js/1.3.0/respond.min.js"></script> <script src="https://oss.maxcdn.com/libs/respond.js/1.3.0/respond.min.js"></script>
<![endif]--> <![endif]-->
{{-- // <script src="http://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script> --}} {{-- // <script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script> --}}
<script src="{{asset("lb-faveo/js/jquery2.1.1.min.js")}}" type="text/javascript"></script> <script src="{{asset("lb-faveo/js/jquery2.1.1.min.js")}}" type="text/javascript"></script>
@yield('HeadInclude') @yield('HeadInclude')
</head> </head>
@@ -74,8 +74,8 @@
@endif @endif
<li @yield('kb')><a href="{!! url('knowledgebase') !!}">{!! Lang::get('lang.knowledge_base') !!}</a> <li @yield('kb')><a href="{!! url('knowledgebase') !!}">{!! Lang::get('lang.knowledge_base') !!}</a>
<ul class="dropdown-menu"> <ul class="dropdown-menu">
<li><a href="{{route('category-list')}}">{!! Lang::get('lang.categories') !!}</a></li> <li><a href="{{route('category-list')}}">{!! Lang::get('lang.categories') !!}</a></li>
<li><a href="{{route('article-list')}}">{!! Lang::get('lang.articles') !!}</a></li> <li><a href="{{route('article-list')}}">{!! Lang::get('lang.articles') !!}</a></li>
</ul> </ul>
</li> </li>
<?php $pages = App\Model\kb\Page::where('status', '1')->where('visibility', '1')->get(); <?php $pages = App\Model\kb\Page::where('status', '1')->where('visibility', '1')->get();
@@ -120,12 +120,12 @@
<ul class="nav navbar-nav navbar-login"> <ul class="nav navbar-nav navbar-login">
<li <?php if ($errors->first('email') || $errors->first('password')) { ?> class="sfHover" <?php } else { ?> <?php } ?> ><a href="#" data-toggle="collapse" <?php <li <?php if ($errors->first('email') || $errors->first('password')) { ?> class="sfHover" <?php } else { ?> <?php } ?> ><a href="#" data-toggle="collapse" <?php
if ($errors->first('email') || $errors->first('password')) { if ($errors->first('email') || $errors->first('password')) {
} else { } else {
?> class="collapsed" <?php } ?> data-target="#login-form">{!! Lang::get('lang.login') !!} <i class="sub-indicator fa fa-chevron-circle-down fa-fw text-muted"></i></a></li> ?> class="collapsed" <?php } ?> data-target="#login-form">{!! Lang::get('lang.login') !!} <i class="sub-indicator fa fa-chevron-circle-down fa-fw text-muted"></i></a></li>
</ul><!-- .navbar-login --> </ul><!-- .navbar-login -->
<div id="login-form" <?php if ($errors->first('email') || $errors->first('password')) { ?> class="login-form collapse fade clearfix in" <?php } else { ?> class="login-form collapse fade clearfix" <?php } ?> > <div id="login-form" <?php if ($errors->first('email') || $errors->first('password')) { ?> class="login-form collapse fade clearfix in" <?php } else { ?> class="login-form collapse fade clearfix" <?php } ?> >
{!! Form::open(['action'=>'Auth\AuthController@postLogin', 'method'=>'post']) !!} {!! Form::open(['action'=>'Auth\AuthController@postLogin', 'method'=>'post']) !!}
@if(Session::has('errors')) @if(Session::has('errors'))
@if(Session::has('check')) @if(Session::has('check'))
<?php goto b; ?> <?php goto b; ?>
@@ -172,19 +172,19 @@
</div> </div>
</div> </div>
{!! Form::close() !!} {!! Form::close() !!}
</div> </div>
</div> </div>
</header> </header>
<!-- Left side column. contains the logo and sidebar --> <!-- Left side column. contains the logo and sidebar -->
<!-- Right side column. Contains the navbar and content of the page --> <!-- Right side column. Contains the navbar and content of the page -->
<div class="site-hero clearfix"> <div class="site-hero clearfix">
{!! Breadcrumbs::render() !!} {!! Breadcrumbs::render() !!}
</div> </div>
<!-- Main content --> <!-- Main content -->
<div id="main" class="site-main clearfix"> <div id="main" class="site-main clearfix">
<div class="container"> <div class="container">
<div class="content-area"> <div class="content-area">
<div class="row"> <div class="row">
@if(Session::has('success')) @if(Session::has('success'))
<div class="alert alert-success alert-dismissable"> <div class="alert alert-success alert-dismissable">
<i class="fa fa-check-circle"></i> <i class="fa fa-check-circle"></i>
@@ -226,7 +226,7 @@
</div> </div>
</div> </div>
</div> </div>
</div> </div>
<!-- /.content-wrapper --> <!-- /.content-wrapper -->
<?php <?php
$footer1 = App\Model\helpdesk\Theme\Widgets::where('name', '=', 'footer1')->first(); $footer1 = App\Model\helpdesk\Theme\Widgets::where('name', '=', 'footer1')->first();
@@ -257,7 +257,7 @@
<section id="section-latest-news" class="section"> <section id="section-latest-news" class="section">
<h2 class="section-title h4 clearfix">{!!$footer2->title!!}</h2> <h2 class="section-title h4 clearfix">{!!$footer2->title!!}</h2>
<div class="textwidget"> <div class="textwidget">
<p>{!! $footer2->value !!}</p> <p>{!! $footer2->value !!}</p>
</div> </div>
</section><!-- #section-latest-news --> </section><!-- #section-latest-news -->
</div> </div>
@@ -360,8 +360,8 @@
</div> </div>
</div> </div>
</footer><!-- #colophon --> </footer><!-- #colophon -->
<!-- jQuery 2.1.3 --> <!-- jQuery 2.1.1 -->
{{-- // <script src="http://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script> --}} {{-- // <script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script> --}}
<script src="{{asset("lb-faveo/js/jquery2.1.1.min.js")}}" type="text/javascript"></script> <script src="{{asset("lb-faveo/js/jquery2.1.1.min.js")}}" type="text/javascript"></script>
<!-- Bootstrap 3.3.2 JS --> <!-- Bootstrap 3.3.2 JS -->
{{-- // <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/js/bootstrap.min.js" type="text/javascript"></script> --}} {{-- // <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/js/bootstrap.min.js" type="text/javascript"></script> --}}

View File

@@ -28,13 +28,13 @@
<link href="{{asset("lb-faveo/plugins/filebrowser/plugin.js")}}" rel="stylesheet" type="text/css" /> <link href="{{asset("lb-faveo/plugins/filebrowser/plugin.js")}}" rel="stylesheet" type="text/css" />
{{-- jquery ui css --}} {{-- jquery ui css --}}
<link type="text/css" href="{{asset("lb-faveo/downloads/jquery.ui.css")}}" rel="stylesheet"> <link type="text/css" href="{{asset("lb-faveo/downloads/jquery.ui.css")}}" rel="stylesheet">
<link href="{{asset("lb-faveo/plugins/bootstrap-wysihtml5/bootstrap3-wysihtml5.min.css")}}" rel="stylesheet" type="text/css" /> <link href="{{asset("lb-faveo/plugins/bootstrap-wysihtml5/bootstrap3-wysihtml5.min.css")}}" rel="stylesheet" type="text/css" />
<!-- <link type="text/css" href="http://code.jquery.com/ui/1.9.1/themes/redmond/jquery-ui.css" rel="stylesheet"> --> <!-- <link type="text/css" href="http://code.jquery.com/ui/1.9.1/themes/redmond/jquery-ui.css" rel="stylesheet"> -->
<!--[if lt IE 9]> <!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script> <script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
<script src="https://oss.maxcdn.com/libs/respond.js/1.3.0/respond.min.js"></script> <script src="https://oss.maxcdn.com/libs/respond.js/1.3.0/respond.min.js"></script>
<![endif]--> <![endif]-->
<script src="http://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script> <script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
@yield('HeadInclude') @yield('HeadInclude')
</head> </head>
<body class="skin-yellow fixed"> <body class="skin-yellow fixed">
@@ -77,14 +77,14 @@ if ($company != null) {
<img src="{{ Gravatar::src(Auth::user()->email) }}" class="user-image" alt="User Image"> <img src="{{ Gravatar::src(Auth::user()->email) }}" class="user-image" alt="User Image">
@endif @endif
<span class="hidden-xs">{{Auth::user()->first_name." ".Auth::user()->last_name}}</span> <span class="hidden-xs">{{Auth::user()->first_name." ".Auth::user()->last_name}}</span>
@endif @endif
</a> </a>
<ul class="dropdown-menu"> <ul class="dropdown-menu">
<!-- User image --> <!-- User image -->
<li class="user-header" style="background-color:#343F44;"> <li class="user-header" style="background-color:#343F44;">
@if(Auth::user()->profile_pic) @if(Auth::user()->profile_pic)
<img src="{{asset('lb-faveo/dist/img')}}{{'/'}}{{Auth::user()->profile_pic}}" class="img-circle" alt="User Image" /> <img src="{{asset('lb-faveo/dist/img')}}{{'/'}}{{Auth::user()->profile_pic}}" class="img-circle" alt="User Image" />
@else @else
<img src="{{ Gravatar::src(Auth::user()->email) }}" class="img-circle" alt="User Image"> <img src="{{ Gravatar::src(Auth::user()->email) }}" class="img-circle" alt="User Image">
@endif @endif
<p> <p>
@@ -175,14 +175,14 @@ if ($company != null) {
<li @yield('myticket')> <li @yield('myticket')>
<a href="{{url('ticket/myticket')}}"> <a href="{{url('ticket/myticket')}}">
<i class="fa fa-user"></i> <span>My Tickets</span> <i class="fa fa-user"></i> <span>My Tickets</span>
<small class="label pull-right bg-green">{{count($myticket) }}</small> <small class="label pull-right bg-green">{{count($myticket) }}</small>
</a> </a>
</li> </li>
<li> <li>
<a href="{{url('unassigned')}}"> <a href="{{url('unassigned')}}">
<i class="fa fa-th"></i> <span>Unassigned</span> <i class="fa fa-th"></i> <span>Unassigned</span>
<small class="label pull-right bg-green">{{count($unassigned)}}</small> <small class="label pull-right bg-green">{{count($unassigned)}}</small>
</a> </a>
</li> </li>
@@ -316,7 +316,7 @@ $group = App\Model\helpdesk\Agent\Groups::where('name', '=', $agent_group)->wher
</footer> </footer>
</div><!-- ./wrapper --> </div><!-- ./wrapper -->
<script src="http://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script> <script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<!-- Bootstrap 3.3.2 JS --> <!-- Bootstrap 3.3.2 JS -->
<script src="{{asset("lb-faveo/downloads/bootstrap.min.js")}}" type="text/javascript"></script> <script src="{{asset("lb-faveo/downloads/bootstrap.min.js")}}" type="text/javascript"></script>
<!-- Slimscroll --> <!-- Slimscroll -->
@@ -393,7 +393,7 @@ $(function() {
<script src="{{asset("lb-faveo/plugins/filebrowser/plugin.js")}}"></script> <script src="{{asset("lb-faveo/plugins/filebrowser/plugin.js")}}"></script>
<script src="{{asset("lb-faveo/plugins/bootstrap-wysihtml5/bootstrap3-wysihtml5.all.min.js")}}" type="text/javascript"></script> <script src="{{asset("lb-faveo/plugins/bootstrap-wysihtml5/bootstrap3-wysihtml5.all.min.js")}}" type="text/javascript"></script>
<script> <script>
$(function () { $(function () {
//Add text editor //Add text editor

View File

@@ -126,8 +126,8 @@
</footer> </footer>
</div><!-- ./wrapper --> </div><!-- ./wrapper -->
<!-- jQuery 2.1.3 --> <!-- jQuery 2.1.1 -->
<script src="http://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script> <script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<!-- Bootstrap 3.3.2 JS --> <!-- Bootstrap 3.3.2 JS -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/js/bootstrap.min.js" type="text/javascript"></script> <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/js/bootstrap.min.js" type="text/javascript"></script>
<!-- Slimscroll --> <!-- Slimscroll -->

View File

@@ -29,7 +29,7 @@
<header id="masthead" class="site-header" role="banner"> <header id="masthead" class="site-header" role="banner">
<div class="container"> <div class="container">
<div id="logo" class="site-logo text-center" style="font-size: 30px;"> <div id="logo" class="site-logo text-center" style="font-size: 30px;">
<?php <?php
$company = App\Model\helpdesk\Settings\Company::where('id', '=', '1')->first(); $company = App\Model\helpdesk\Settings\Company::where('id', '=', '1')->first();
$system = App\Model\helpdesk\Settings\System::where('id', '=', '1')->first(); $system = App\Model\helpdesk\Settings\System::where('id', '=', '1')->first();
?> ?>
@@ -82,7 +82,7 @@
<li><a href="#" class="collapsed" data-toggle="collapse" data-target="#login-form">Login <i class="sub-indicator fa fa-chevron-circle-down fa-fw text-muted"></i></a></li> <li><a href="#" class="collapsed" data-toggle="collapse" data-target="#login-form">Login <i class="sub-indicator fa fa-chevron-circle-down fa-fw text-muted"></i></a></li>
</ul><!-- .navbar-login --> </ul><!-- .navbar-login -->
<div id="login-form" class="login-form collapse fade clearfix"> <div id="login-form" class="login-form collapse fade clearfix">
{!! Form::open(['action'=>'Auth\AuthController@postLogin', 'method'=>'post']) !!} {!! Form::open(['action'=>'Auth\AuthController@postLogin', 'method'=>'post']) !!}
<div class="form-group has-feedback {{ $errors->has('email') ? 'has-error' : '' }}"> <div class="form-group has-feedback {{ $errors->has('email') ? 'has-error' : '' }}">
{!! Form::text('email',null,['placeholder'=>'Email','class' => 'form-control']) !!} {!! Form::text('email',null,['placeholder'=>'Email','class' => 'form-control']) !!}
@@ -133,7 +133,7 @@
<li>{!! $errors->first('password', '<spam class="help-block ">:message</spam>') !!}</li> <li>{!! $errors->first('password', '<spam class="help-block ">:message</spam>') !!}</li>
</div> </div>
@endif @endif
</div> </div>
</div> </div>
</header> </header>
@@ -144,7 +144,7 @@
<div id="main" class="site-main clearfix"> <div id="main" class="site-main clearfix">
<div class="container"> <div class="container">
<div class="content-area"> <div class="content-area">
<div class="row"> <div class="row">
@yield('content') @yield('content')
<div id="sidebar" class="site-sidebar col-md-3"> <div id="sidebar" class="site-sidebar col-md-3">
<div class="widget-area"> <div class="widget-area">
@@ -159,10 +159,10 @@
</div> </div>
</div> </div>
</div> </div>
</div> </div>
<!-- /.content-wrapper --> <!-- /.content-wrapper -->
<?php <?php
$footer = App\Model\helpdesk\Theme\Footer::whereId('1')->first(); $footer = App\Model\helpdesk\Theme\Footer::whereId('1')->first();
$footer2 = App\Model\helpdesk\Theme\Footer2::whereId('1')->first(); $footer2 = App\Model\helpdesk\Theme\Footer2::whereId('1')->first();
$footer3 = App\Model\helpdesk\Theme\Footer3::whereId('1')->first(); $footer3 = App\Model\helpdesk\Theme\Footer3::whereId('1')->first();
$footer4 = App\Model\helpdesk\Theme\Footer4::whereId('1')->first(); $footer4 = App\Model\helpdesk\Theme\Footer4::whereId('1')->first();
@@ -190,7 +190,7 @@ $footer4 = App\Model\helpdesk\Theme\Footer4::whereId('1')->first();
<section id="section-latest-news" class="section"> <section id="section-latest-news" class="section">
<h2 class="section-title h4 clearfix">{!!$footer2->title!!}</h2> <h2 class="section-title h4 clearfix">{!!$footer2->title!!}</h2>
<div class="textwidget"> <div class="textwidget">
<p>{!!$footer2->footer!!}</p> <p>{!!$footer2->footer!!}</p>
</div> </div>
</section><!-- #section-latest-news --> </section><!-- #section-latest-news -->
</div> </div>
@@ -231,8 +231,8 @@ $footer4 = App\Model\helpdesk\Theme\Footer4::whereId('1')->first();
</div> </div>
</div> </div>
</footer><!-- #colophon --> </footer><!-- #colophon -->
<!-- jQuery 2.1.3 --> <!-- jQuery 2.1.1 -->
<script src="http://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script> <script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<!-- Bootstrap 3.3.2 JS --> <!-- Bootstrap 3.3.2 JS -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/js/bootstrap.min.js" type="text/javascript"></script> <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/js/bootstrap.min.js" type="text/javascript"></script>
<!-- Slimscroll --> <!-- Slimscroll -->

View File

@@ -33,7 +33,7 @@
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script> <script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
<script src="https://oss.maxcdn.com/libs/respond.js/1.3.0/respond.min.js"></script> <script src="https://oss.maxcdn.com/libs/respond.js/1.3.0/respond.min.js"></script>
<![endif]--> <![endif]-->
<script src="http://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script> <script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
@yield('HeadInclude') @yield('HeadInclude')
</head> </head>
<body class="skin-black fixed"> <body class="skin-black fixed">
@@ -190,7 +190,7 @@ if ($company != null) {
<strong>Copyright &copy; {!! date('Y') !!} <a href="{!! $company->website !!}">{!! $company->company_name !!}</a>.</strong> All rights reserved. Powered by <a href="http://www.faveohelpdesk.com/">Faveo</a> <strong>Copyright &copy; {!! date('Y') !!} <a href="{!! $company->website !!}">{!! $company->company_name !!}</a>.</strong> All rights reserved. Powered by <a href="http://www.faveohelpdesk.com/">Faveo</a>
</footer> </footer>
</div><!-- ./wrapper --> </div><!-- ./wrapper -->
<script src="http://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script> <script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<!-- Bootstrap 3.3.2 JS --> <!-- Bootstrap 3.3.2 JS -->
<script src="{{asset("downloads/bootstrap.min.js")}}" type="text/javascript"></script> <script src="{{asset("downloads/bootstrap.min.js")}}" type="text/javascript"></script>
<!-- Slimscroll --> <!-- Slimscroll -->

View File

@@ -22,7 +22,7 @@
<body class="login-page"> <body class="login-page">
<div class="login-box"> <div class="login-box">
<div class="login-logo"> <div class="login-logo">
<?php <?php
$company = App\Model\helpdesk\Settings\Company::where('id', '=', '1')->first(); $company = App\Model\helpdesk\Settings\Company::where('id', '=', '1')->first();
$system = App\Model\helpdesk\Settings\System::where('id', '=', '1')->first(); $system = App\Model\helpdesk\Settings\System::where('id', '=', '1')->first();
?> ?>
@@ -51,7 +51,7 @@
</div> </div>
</div> </div>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script> <script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/js/bootstrap.min.js" type="text/javascript"></script> <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/js/bootstrap.min.js" type="text/javascript"></script>
<!-- iCheck --> <!-- iCheck -->
<script src="{{asset("lb-faveo/plugins/iCheck/icheck.min.js")}}" type="text/javascript"></script> <script src="{{asset("lb-faveo/plugins/iCheck/icheck.min.js")}}" type="text/javascript"></script>

View File

@@ -23,12 +23,12 @@
<div class="login-logo"> <div class="login-logo">
<a href="../../index2.html"><b>Faveo</b> HELP DESK</a> <a href="../../index2.html"><b>Faveo</b> HELP DESK</a>
</div><!-- /.login-logo --> </div><!-- /.login-logo -->
@yield('body') @yield('body')
</div><!-- /.login-box --> </div><!-- /.login-box -->
<script src="http://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script> <script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/js/bootstrap.min.js" type="text/javascript"></script> <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/js/bootstrap.min.js" type="text/javascript"></script>
<!-- iCheck --> <!-- iCheck -->
<script src="{{asset("plugins/iCheck/icheck.min.js")}}" type="text/javascript"></script> <script src="{{asset("plugins/iCheck/icheck.min.js")}}" type="text/javascript"></script>