<!DOCTYPE html>
<html lang="en">
<head>

 
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta http-equiv="X-UA-Compatible" content="ie=edge">
    <title>@yield('title') | {{ config('app.site') }}</title>
    <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-rbsA2VBKQhggwzxH7pPCaAqO46MgnOM80zW1RWuH61DGLwZJEdK2Kadq2F9CUG65" crossorigin="anonymous">


<!-- Apple Touch Icon -->
<link rel="shortcut icon"  type="image/png" href="{{ asset('favicon.png') }}">
<link rel="apple-touch-icon" sizes="180x180" href="{{ asset('favicon.png') }}">
<!-- <link rel="icon" type="image/x-icon" href="{{ asset('favicon.ico') }}"> -->

<!-- Bootstrap CSS -->
<link rel="stylesheet" href="{{asset('assets/css/bootstrap.min.css')}}">

<!-- Tabler Icon CSS -->
<link rel="stylesheet" href="{{asset('assets/plugins/tabler-icons/tabler-icons.css')}}">

<!-- Fontawesome CSS -->
<link rel="stylesheet" href="{{asset('assets/plugins/fontawesome/css/fontawesome.min.css')}}">
<link rel="stylesheet" href="{{asset('assets/plugins/fontawesome/css/all.min.css')}}">

<!-- Main CSS -->
<link rel="stylesheet" href="{{asset('assets/css/style.css')}}">


</head>
<body>

  
    <div class="container">
        <!-- <h3 class="text-center mt-3 mb-3">Laravel</h3> -->


        @yield('content')
        <div class="row justify-content-center text-center mt-3">
            <div class="col-md-12">

            </div>
        </div>
    </div>


<!-- jQuery -->
<script src="{{asset('assets/js/jquery-3.7.1.min.js')}}"></script>

<!-- Bootstrap Core JS -->
<script src="{{asset('assets/js/bootstrap.bundle.min.js')}}"></script>



<script>
document.addEventListener("DOMContentLoaded", function() {
    const toggleIcons = document.querySelectorAll(".toggle-password");

    toggleIcons.forEach(function(icon) {
        icon.addEventListener("click", function() {
            const input = this.previousElementSibling; // assumes input is right before the icon
            const isPassword = input.type === "password";
            input.type = isPassword ? "text" : "password";
            this.classList.toggle("ti-eye");
            this.classList.toggle("ti-eye-off");
        });
    });
});
</script>


<script src="{{ asset('assets/js/bootstrap.bundle.min.js') }}"></script>


</body>
</html>
