490 lines
28 KiB
PHP
490 lines
28 KiB
PHP
<!DOCTYPE html>
|
|
<html lang="en" dir="ltr" data-bs-theme="light" data-color-theme="Blue_Theme" data-layout="vertical">
|
|
|
|
<head>
|
|
<!-- Required meta tags -->
|
|
<meta charset="UTF-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
|
|
<!-- Favicon icon-->
|
|
<link rel="shortcut icon" type="image/png" href="{{ asset('assets/logo.jpg') }}">
|
|
|
|
<!-- Core Css -->
|
|
{{-- <link rel="stylesheet" href="https://bootstrapdemos.wrappixel.com/flexy/dist/assets/css/styles.css"> --}}
|
|
<link rel="stylesheet" href="{{ asset('admin2/assets/css/styles.css') }}">
|
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@tabler/icons-webfont@latest/tabler-icons.min.css">
|
|
<link rel="stylesheet"
|
|
href="https://bootstrapdemos.wrappixel.com/flexy/dist/assets/libs/sweetalert2/dist/sweetalert2.min.css">
|
|
|
|
@stack('style')
|
|
|
|
<title>@yield('title') Animal Recognition</title>
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<div class="preloader">
|
|
<img src="{{ asset('admin2/assets/images/logos/preloader.svg') }}" alt="loader" class="lds-ripple img-fluid">
|
|
</div>
|
|
<div id="main-wrapper">
|
|
|
|
@include('admin2.partials.aside-horizontal')
|
|
|
|
<div class="page-wrapper">
|
|
|
|
@include('admin2.partials.header')
|
|
|
|
|
|
@include('admin2.partials.aside-vertical')
|
|
|
|
<div class="body-wrapper">
|
|
@yield('content')
|
|
|
|
@include('admin2.partials.footer')
|
|
|
|
</div>
|
|
<script>
|
|
function handleColorTheme(e) {
|
|
document.documentElement.setAttribute("data-color-theme", e);
|
|
}
|
|
</script>
|
|
{{-- <button
|
|
class="btn btn-primary p-3 rounded-circle d-flex align-items-center justify-content-center customizer-btn"
|
|
type="button" data-bs-toggle="offcanvas" data-bs-target="#offcanvasExample"
|
|
aria-controls="offcanvasExample">
|
|
<i class="icon ti ti-settings fs-7"></i>
|
|
</button> --}}
|
|
|
|
<div class="offcanvas customizer offcanvas-end" tabindex="-1" id="offcanvasExample"
|
|
aria-labelledby="offcanvasExampleLabel">
|
|
<div class="d-flex align-items-center justify-content-between p-3 border-bottom">
|
|
<h4 class="offcanvas-title fw-semibold" id="offcanvasExampleLabel">
|
|
Settings
|
|
</h4>
|
|
<button type="button" class="btn-close" data-bs-dismiss="offcanvas" aria-label="Close"></button>
|
|
</div>
|
|
<div class="offcanvas-body h-n80" data-simplebar="">
|
|
<h6 class="fw-semibold fs-4 mb-2">Theme</h6>
|
|
|
|
<div class="d-flex flex-row gap-3 customizer-box" role="group">
|
|
<input type="radio" class="btn-check light-layout" name="theme-layout" id="light-layout"
|
|
autocomplete="off">
|
|
<label class="btn p-9 btn-outline-primary rounded-2" for="light-layout">
|
|
<i class="icon ti ti-brightness-up fs-7 me-2"></i>Light
|
|
</label>
|
|
|
|
<input type="radio" class="btn-check dark-layout" name="theme-layout" id="dark-layout"
|
|
autocomplete="off">
|
|
<label class="btn p-9 btn-outline-primary rounded-2" for="dark-layout">
|
|
<i class="icon ti ti-moon fs-7 me-2"></i>Dark
|
|
</label>
|
|
</div>
|
|
|
|
<h6 class="mt-5 fw-semibold fs-4 mb-2">Theme Direction</h6>
|
|
<div class="d-flex flex-row gap-3 customizer-box" role="group">
|
|
<input type="radio" class="btn-check" name="direction-l" id="ltr-layout" autocomplete="off">
|
|
<label class="btn p-9 btn-outline-primary" for="ltr-layout">
|
|
<i class="icon ti ti-text-direction-ltr fs-7 me-2"></i>LTR
|
|
</label>
|
|
|
|
<input type="radio" class="btn-check" name="direction-l" id="rtl-layout" autocomplete="off">
|
|
<label class="btn p-9 btn-outline-primary" for="rtl-layout">
|
|
<i class="icon ti ti-text-direction-rtl fs-7 me-2"></i>RTL
|
|
</label>
|
|
</div>
|
|
|
|
<h6 class="mt-5 fw-semibold fs-4 mb-2">Theme Colors</h6>
|
|
|
|
<div class="d-flex flex-row flex-wrap gap-3 customizer-box color-pallete" role="group">
|
|
<input type="radio" class="btn-check" name="color-theme-layout" id="Blue_Theme"
|
|
autocomplete="off">
|
|
<label class="btn p-9 btn-outline-primary d-flex align-items-center justify-content-center"
|
|
onclick="handleColorTheme('Blue_Theme')" for="Blue_Theme" data-bs-toggle="tooltip"
|
|
data-bs-placement="top" data-bs-title="BLUE_THEME">
|
|
<div
|
|
class="color-box rounded-circle d-flex align-items-center justify-content-center skin-1">
|
|
<i class="ti ti-check text-white d-flex icon fs-5"></i>
|
|
</div>
|
|
</label>
|
|
|
|
<input type="radio" class="btn-check" name="color-theme-layout" id="Aqua_Theme"
|
|
autocomplete="off">
|
|
<label class="btn p-9 btn-outline-primary d-flex align-items-center justify-content-center"
|
|
onclick="handleColorTheme('Aqua_Theme')" for="Aqua_Theme" data-bs-toggle="tooltip"
|
|
data-bs-placement="top" data-bs-title="AQUA_THEME">
|
|
<div
|
|
class="color-box rounded-circle d-flex align-items-center justify-content-center skin-2">
|
|
<i class="ti ti-check text-white d-flex icon fs-5"></i>
|
|
</div>
|
|
</label>
|
|
|
|
<input type="radio" class="btn-check" name="color-theme-layout" id="Purple_Theme"
|
|
autocomplete="off">
|
|
<label class="btn p-9 btn-outline-primary d-flex align-items-center justify-content-center"
|
|
onclick="handleColorTheme('Purple_Theme')" for="Purple_Theme" data-bs-toggle="tooltip"
|
|
data-bs-placement="top" data-bs-title="PURPLE_THEME">
|
|
<div
|
|
class="color-box rounded-circle d-flex align-items-center justify-content-center skin-3">
|
|
<i class="ti ti-check text-white d-flex icon fs-5"></i>
|
|
</div>
|
|
</label>
|
|
|
|
<input type="radio" class="btn-check" name="color-theme-layout" id="green-theme-layout"
|
|
autocomplete="off">
|
|
<label class="btn p-9 btn-outline-primary d-flex align-items-center justify-content-center"
|
|
onclick="handleColorTheme('Green_Theme')" for="green-theme-layout"
|
|
data-bs-toggle="tooltip" data-bs-placement="top" data-bs-title="GREEN_THEME">
|
|
<div
|
|
class="color-box rounded-circle d-flex align-items-center justify-content-center skin-4">
|
|
<i class="ti ti-check text-white d-flex icon fs-5"></i>
|
|
</div>
|
|
</label>
|
|
|
|
<input type="radio" class="btn-check" name="color-theme-layout" id="cyan-theme-layout"
|
|
autocomplete="off">
|
|
<label class="btn p-9 btn-outline-primary d-flex align-items-center justify-content-center"
|
|
onclick="handleColorTheme('Cyan_Theme')" for="cyan-theme-layout" data-bs-toggle="tooltip"
|
|
data-bs-placement="top" data-bs-title="CYAN_THEME">
|
|
<div
|
|
class="color-box rounded-circle d-flex align-items-center justify-content-center skin-5">
|
|
<i class="ti ti-check text-white d-flex icon fs-5"></i>
|
|
</div>
|
|
</label>
|
|
|
|
<input type="radio" class="btn-check" name="color-theme-layout" id="orange-theme-layout"
|
|
autocomplete="off">
|
|
<label class="btn p-9 btn-outline-primary d-flex align-items-center justify-content-center"
|
|
onclick="handleColorTheme('Orange_Theme')" for="orange-theme-layout"
|
|
data-bs-toggle="tooltip" data-bs-placement="top" data-bs-title="ORANGE_THEME">
|
|
<div
|
|
class="color-box rounded-circle d-flex align-items-center justify-content-center skin-6">
|
|
<i class="ti ti-check text-white d-flex icon fs-5"></i>
|
|
</div>
|
|
</label>
|
|
</div>
|
|
|
|
<h6 class="mt-5 fw-semibold fs-4 mb-2">Layout Type</h6>
|
|
<div class="d-flex flex-row gap-3 customizer-box" role="group">
|
|
<div>
|
|
<input type="radio" class="btn-check" name="page-layout" id="vertical-layout"
|
|
autocomplete="off">
|
|
<label class="btn p-9 btn-outline-primary" for="vertical-layout">
|
|
<i class="icon ti ti-layout-sidebar-right fs-7 me-2"></i>Vertical
|
|
</label>
|
|
</div>
|
|
<div>
|
|
<input type="radio" class="btn-check" name="page-layout" id="horizontal-layout"
|
|
autocomplete="off">
|
|
<label class="btn p-9 btn-outline-primary" for="horizontal-layout">
|
|
<i class="icon ti ti-layout-navbar fs-7 me-2"></i>Horizontal
|
|
</label>
|
|
</div>
|
|
</div>
|
|
|
|
<h6 class="mt-5 fw-semibold fs-4 mb-2">Container Option</h6>
|
|
|
|
<div class="d-flex flex-row gap-3 customizer-box" role="group">
|
|
<input type="radio" class="btn-check" name="layout" id="boxed-layout"
|
|
autocomplete="off">
|
|
<label class="btn p-9 btn-outline-primary" for="boxed-layout">
|
|
<i class="icon ti ti-layout-distribute-vertical fs-7 me-2"></i>Boxed
|
|
</label>
|
|
|
|
<input type="radio" class="btn-check" name="layout" id="full-layout" autocomplete="off">
|
|
<label class="btn p-9 btn-outline-primary" for="full-layout">
|
|
<i class="icon ti ti-layout-distribute-horizontal fs-7 me-2"></i>Full
|
|
</label>
|
|
</div>
|
|
|
|
<h6 class="fw-semibold fs-4 mb-2 mt-5">Sidebar Type</h6>
|
|
<div class="d-flex flex-row gap-3 customizer-box" role="group">
|
|
<a href="javascript:void(0)" class="fullsidebar">
|
|
<input type="radio" class="btn-check" name="sidebar-type" id="full-sidebar"
|
|
autocomplete="off">
|
|
<label class="btn p-9 btn-outline-primary" for="full-sidebar">
|
|
<i class="icon ti ti-layout-sidebar-right fs-7 me-2"></i>Full
|
|
</label>
|
|
</a>
|
|
<div>
|
|
<input type="radio" class="btn-check " name="sidebar-type" id="mini-sidebar"
|
|
autocomplete="off">
|
|
<label class="btn p-9 btn-outline-primary" for="mini-sidebar">
|
|
<i class="icon ti ti-layout-sidebar fs-7 me-2"></i>Collapse
|
|
</label>
|
|
</div>
|
|
</div>
|
|
|
|
<h6 class="mt-5 fw-semibold fs-4 mb-2">Card With</h6>
|
|
|
|
<div class="d-flex flex-row gap-3 customizer-box" role="group">
|
|
<input type="radio" class="btn-check" name="card-layout" id="card-with-border"
|
|
autocomplete="off">
|
|
<label class="btn p-9 btn-outline-primary" for="card-with-border">
|
|
<i class="icon ti ti-border-outer fs-7 me-2"></i>Border
|
|
</label>
|
|
|
|
<input type="radio" class="btn-check" name="card-layout" id="card-without-border"
|
|
autocomplete="off">
|
|
<label class="btn p-9 btn-outline-primary" for="card-without-border">
|
|
<i class="icon ti ti-border-none fs-7 me-2"></i>Shadow
|
|
</label>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- Search Bar -->
|
|
<div class="modal fade" id="exampleModal" tabindex="-1" aria-hidden="true">
|
|
<div class="modal-dialog modal-dialog-scrollable modal-lg">
|
|
<div class="modal-content rounded-1">
|
|
<div class="modal-header border-bottom">
|
|
<input type="search" class="form-control fs-3" placeholder="Search here" id="search">
|
|
<a href="javascript:void(0)" data-bs-dismiss="modal" class="lh-1">
|
|
<i class="ti ti-x fs-5 ms-3"></i>
|
|
</a>
|
|
</div>
|
|
<div class="modal-body message-body" data-simplebar="">
|
|
<h5 class="mb-0 fs-5 p-1">Quick Page Links</h5>
|
|
<ul class="list mb-0 py-2">
|
|
<li class="p-1 mb-1 bg-hover-light-black rounded-2">
|
|
<a href="javascript:void(0)">
|
|
<span class="d-block">Modern</span>
|
|
<span class="text-muted d-block">/dashboards/dashboard1</span>
|
|
</a>
|
|
</li>
|
|
<li class="p-1 mb-1 bg-hover-light-black rounded-2">
|
|
<a href="javascript:void(0)">
|
|
<span class="d-block">Dashboard</span>
|
|
<span class="text-muted d-block">/dashboards/dashboard2</span>
|
|
</a>
|
|
</li>
|
|
<li class="p-1 mb-1 bg-hover-light-black rounded-2">
|
|
<a href="javascript:void(0)">
|
|
<span class="d-block">Contacts</span>
|
|
<span class="text-muted d-block">/apps/contacts</span>
|
|
</a>
|
|
</li>
|
|
<li class="p-1 mb-1 bg-hover-light-black rounded-2">
|
|
<a href="javascript:void(0)">
|
|
<span class="d-block">Posts</span>
|
|
<span class="text-muted d-block">/apps/blog/posts</span>
|
|
</a>
|
|
</li>
|
|
<li class="p-1 mb-1 bg-hover-light-black rounded-2">
|
|
<a href="javascript:void(0)">
|
|
<span class="d-block">Detail</span>
|
|
<span
|
|
class="text-muted d-block">/apps/blog/detail/streaming-video-way-before-it-was-cool-go-dark-tomorrow</span>
|
|
</a>
|
|
</li>
|
|
<li class="p-1 mb-1 bg-hover-light-black rounded-2">
|
|
<a href="javascript:void(0)">
|
|
<span class="d-block">Shop</span>
|
|
<span class="text-muted d-block">/apps/ecommerce/shop</span>
|
|
</a>
|
|
</li>
|
|
<li class="p-1 mb-1 bg-hover-light-black rounded-2">
|
|
<a href="javascript:void(0)">
|
|
<span class="d-block">Modern</span>
|
|
<span class="text-muted d-block">/dashboards/dashboard1</span>
|
|
</a>
|
|
</li>
|
|
<li class="p-1 mb-1 bg-hover-light-black rounded-2">
|
|
<a href="javascript:void(0)">
|
|
<span class="d-block">Dashboard</span>
|
|
<span class="text-muted d-block">/dashboards/dashboard2</span>
|
|
</a>
|
|
</li>
|
|
<li class="p-1 mb-1 bg-hover-light-black rounded-2">
|
|
<a href="javascript:void(0)">
|
|
<span class="d-block">Contacts</span>
|
|
<span class="text-muted d-block">/apps/contacts</span>
|
|
</a>
|
|
</li>
|
|
<li class="p-1 mb-1 bg-hover-light-black rounded-2">
|
|
<a href="javascript:void(0)">
|
|
<span class="d-block">Posts</span>
|
|
<span class="text-muted d-block">/apps/blog/posts</span>
|
|
</a>
|
|
</li>
|
|
<li class="p-1 mb-1 bg-hover-light-black rounded-2">
|
|
<a href="javascript:void(0)">
|
|
<span class="d-block">Detail</span>
|
|
<span
|
|
class="text-muted d-block">/apps/blog/detail/streaming-video-way-before-it-was-cool-go-dark-tomorrow</span>
|
|
</a>
|
|
</li>
|
|
<li class="p-1 mb-1 bg-hover-light-black rounded-2">
|
|
<a href="javascript:void(0)">
|
|
<span class="d-block">Shop</span>
|
|
<span class="text-muted d-block">/apps/ecommerce/shop</span>
|
|
</a>
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<!-- Shopping Cart -->
|
|
<div class="offcanvas offcanvas-end shopping-cart" tabindex="-1" id="offcanvasRight"
|
|
aria-labelledby="offcanvasRightLabel">
|
|
<div class="offcanvas-header justify-content-between py-4">
|
|
<h5 class="offcanvas-title fs-5 fw-semibold" id="offcanvasRightLabel">
|
|
Shopping Cart
|
|
</h5>
|
|
<span class="badge bg-primary rounded-2 px-3 py-1 lh-sm">5 new</span>
|
|
</div>
|
|
<div class="offcanvas-body h-100 px-4 pt-0" data-simplebar="">
|
|
<ul class="mb-0">
|
|
<li class="pb-7">
|
|
<div class="d-flex align-items-center">
|
|
<img src="{{ asset('admin2/assets/images/products/product-1.jpg') }}" width="95"
|
|
height="75" class="rounded-1 me-9 flex-shrink-0" alt="flexy-img">
|
|
<div>
|
|
<h6 class="mb-1">Supreme toys cooker</h6>
|
|
<p class="mb-0 text-muted fs-2">Kitchenware Item</p>
|
|
<div class="d-flex align-items-center justify-content-between mt-2">
|
|
<h6 class="fs-2 fw-semibold mb-0 text-muted">$250</h6>
|
|
<div class="input-group input-group-sm w-50">
|
|
<button class="btn border-0 round-20 minus p-0 bg-success-subtle text-success"
|
|
type="button" id="add1">
|
|
-
|
|
</button>
|
|
<input type="text"
|
|
class="form-control round-20 bg-transparent text-muted fs-2 border-0 text-center qty"
|
|
placeholder="" aria-label="Example text with button addon"
|
|
aria-describedby="add1" value="1">
|
|
<button class="btn text-success bg-success-subtle p-0 round-20 border-0 add"
|
|
type="button" id="addo2">
|
|
+
|
|
</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</li>
|
|
<li class="pb-7">
|
|
<div class="d-flex align-items-center">
|
|
<img src="{{ asset('admin2/assets/images/products/product-2.jpg') }}" width="95"
|
|
height="75" class="rounded-1 me-9 flex-shrink-0" alt="flexy-img">
|
|
<div>
|
|
<h6 class="mb-1">Supreme toys cooker</h6>
|
|
<p class="mb-0 text-muted fs-2">Kitchenware Item</p>
|
|
<div class="d-flex align-items-center justify-content-between mt-2">
|
|
<h6 class="fs-2 fw-semibold mb-0 text-muted">$250</h6>
|
|
<div class="input-group input-group-sm w-50">
|
|
<button class="btn border-0 round-20 minus p-0 bg-success-subtle text-success"
|
|
type="button" id="add2">
|
|
-
|
|
</button>
|
|
<input type="text"
|
|
class="form-control round-20 bg-transparent text-muted fs-2 border-0 text-center qty"
|
|
placeholder="" aria-label="Example text with button addon"
|
|
aria-describedby="add2" value="1">
|
|
<button class="btn text-success bg-success-subtle p-0 round-20 border-0 add"
|
|
type="button" id="addon34">
|
|
+
|
|
</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</li>
|
|
<li class="pb-7">
|
|
<div class="d-flex align-items-center">
|
|
<img src="{{ asset('admin2/assets/images/products/product-3.jpg') }}" width="95"
|
|
height="75" class="rounded-1 me-9 flex-shrink-0" alt="flexy-img">
|
|
<div>
|
|
<h6 class="mb-1">Supreme toys cooker</h6>
|
|
<p class="mb-0 text-muted fs-2">Kitchenware Item</p>
|
|
<div class="d-flex align-items-center justify-content-between mt-2">
|
|
<h6 class="fs-2 fw-semibold mb-0 text-muted">$250</h6>
|
|
<div class="input-group input-group-sm w-50">
|
|
<button class="btn border-0 round-20 minus p-0 bg-success-subtle text-success"
|
|
type="button" id="add3">
|
|
-
|
|
</button>
|
|
<input type="text"
|
|
class="form-control round-20 bg-transparent text-muted fs-2 border-0 text-center qty"
|
|
placeholder="" aria-label="Example text with button addon"
|
|
aria-describedby="add3" value="1">
|
|
<button class="btn text-success bg-success-subtle p-0 round-20 border-0 add"
|
|
type="button" id="addon3">
|
|
+
|
|
</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</li>
|
|
</ul>
|
|
<div class="align-bottom">
|
|
<div class="d-flex align-items-center pb-7">
|
|
<span class="text-dark fs-3">Sub Total</span>
|
|
<div class="ms-auto">
|
|
<span class="text-dark fw-semibold fs-3">$2530</span>
|
|
</div>
|
|
</div>
|
|
<div class="d-flex align-items-center pb-7">
|
|
<span class="text-dark fs-3">Total</span>
|
|
<div class="ms-auto">
|
|
<span class="text-dark fw-semibold fs-3">$6830</span>
|
|
</div>
|
|
</div>
|
|
<a href="eco-checkout.html" class="btn btn-outline-primary w-100">Go to shopping cart</a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="dark-transparent sidebartoggler"></div>
|
|
<script src="{{ asset('admin2/assets/js/vendor.min.js') }}"></script>
|
|
|
|
<script src="{{ asset('admin2/assets/libs/bootstrap/dist/js/bootstrap.bundle.min.js') }}"></script>
|
|
<script src="{{ asset('admin2/assets/libs/simplebar/dist/simplebar.min.js') }}"></script>
|
|
<script src="{{ asset('admin2/assets/js/theme/app.init.js') }}"></script>
|
|
<script src="{{ asset('admin2/assets/js/theme/theme.js') }}"></script>
|
|
<script src="{{ asset('admin2/assets/js/theme/app.min.js') }}"></script>
|
|
<script src="{{ asset('admin2/assets/js/theme/sidebarmenu.js') }}"></script>
|
|
|
|
|
|
<script src="https://cdn.jsdelivr.net/npm/iconify-icon@1.0.8/dist/iconify-icon.min.js"></script>
|
|
<script src="{{ asset('admin2/assets/libs/apexcharts/dist/apexcharts.min.js') }}"></script>
|
|
<script src="{{ asset('admin2/assets/js/dashboards/dashboard.js') }}"></script>
|
|
|
|
<script src="https://cdn.jsdelivr.net/npm/@iconify/icons-solar@1.2.3/adhesive-plaster-2-linear.min.js"></script>
|
|
<script src="https://cdn.jsdelivr.net/npm/@tabler/icons@latest/icons-react/dist/index.umd.min.js"></script>
|
|
<script src="https://cdn.jsdelivr.net/npm/@tabler/icons@1.74.0/icons-react/dist/index.umd.min.js"></script>
|
|
<script src="https://cdn.jsdelivr.net/npm/iconify-icon@1.0.8/dist/iconify-icon.min.js"></script>
|
|
<script src="https://bootstrapdemos.wrappixel.com/flexy/dist/assets/libs/sweetalert2/dist/sweetalert2.min.js"></script>
|
|
<script src="https://bootstrapdemos.wrappixel.com/flexy/dist/assets/js/forms/sweet-alert.init.js"></script>
|
|
|
|
@if (Session::get('success'))
|
|
<script>
|
|
Swal.fire({
|
|
icon: 'success',
|
|
title: 'Success',
|
|
text: '{{ Session::get('success') }}',
|
|
showConfirmButton: false,
|
|
timer: 1500,
|
|
})
|
|
</script>
|
|
@endif
|
|
|
|
@if (Session::get('error'))
|
|
<script>
|
|
Swal.fire({
|
|
icon: 'error',
|
|
title: 'Oops...',
|
|
text: '{{ Session::get('error') }}',
|
|
showConfirmButton: false,
|
|
timer: 1500,
|
|
})
|
|
</script>
|
|
@endif
|
|
|
|
@stack('script')
|
|
</body>
|
|
|
|
</html>
|