app.blade.php 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <title>ISR QR CODE</title>
  5. <meta charset="UTF-8">
  6. <meta name="viewport" content="width=device-width, initial-scale=1">
  7. <link rel="icon" type="image/png" href="{{ asset ('favicon.ico')}}"/>
  8. <link rel="stylesheet" type="text/css" href="{{ asset ('jquery/jquery-confirm.css') }}">
  9. <link href="{{ asset('css/app.css') }}" rel="stylesheet">
  10. <link rel="stylesheet" type="text/css" href="{{ asset ('css/auth/util.css')}}">
  11. <link rel="stylesheet" type="text/css" href="{{ asset ('css/auth/main.css')}}">
  12. <link rel="stylesheet" type="text/css" href="{{ asset ('css/fonts/font-awesome-4.7.0/css/font-awesome.min.css')}}">
  13. <link rel="stylesheet" type="text/css" href="{{ asset ('css/fonts/iconic/css/material-design-iconic-font.min.css')}}">
  14. <link href="{{ asset ('plugins/@fortawesome/fontawesome-free/css/all.min.css')}}" rel="stylesheet" />
  15. </head>
  16. <body>
  17. @yield('content')
  18. <div id="dropDownSelect1"></div>
  19. <footer>
  20. <p class="copyright">© DPS SDPPI 2020</p>
  21. </footer>
  22. <script src="{{ asset ('jquery/jquery-3.2.1.min.js')}}"></script>
  23. <script src="{{ asset ('js/auth/main.js')}}"></script>
  24. <script src="{{asset('jquery/jquery-confirm.js') }}"></script>
  25. <script>
  26. @if(count($errors) > 0 || Session::has('success') || Session::has('info') || Session::has('warning'))
  27. $.confirm({
  28. title: '{{Session::get('info')}}',
  29. content: '{{Session::get('alert')}}',
  30. type: '{{Session::get('colors')}}',
  31. icon: '{{Session::get('icons')}}',
  32. typeAnimated: true,
  33. buttons: {
  34. close: function () {
  35. }
  36. }
  37. });
  38. @elseif(count($errors) == 0)
  39. return false;
  40. @else
  41. $.confirm({
  42. title: '{{Session::has('info')}}',
  43. content: '{{Session::get('alert')}}',
  44. type: 'red',
  45. typeAnimated: true,
  46. icon: 'fas fa-exclamation-triangle',
  47. buttons: {
  48. close: function () {
  49. }
  50. }
  51. });
  52. @endif
  53. </script>
  54. </body>
  55. </html>