Edit File: d6a62a3073ff99508fec26f7f32e530a.php
<!DOCTYPE html> <html lang="<?php echo e(str_replace('_', '-', app()->getLocale())); ?>"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <meta name="csrf-token" content="<?php echo e(csrf_token()); ?>"> <title><?php echo e(config('app.name', 'Gudang Anime Movie')); ?></title> <!-- Fonts --> <link rel="preconnect" href="https://fonts.bunny.net"> <link href="https://fonts.bunny.net/css?family=figtree:400,500,600&display=swap" rel="stylesheet" /> <!-- Robot --> <meta name="robots" content="noindex, nofollow"> <!-- Scripts --> <?php echo app('Illuminate\Foundation\Vite')(['resources/css/app.css', 'resources/js/app.js']); ?> </head> <body class="font-sans text-gray-900 antialiased"> <div class="min-h-screen flex flex-col sm:justify-center items-center pt-6 sm:pt-0 bg-gray-800 dark:bg-gray-900"> <div class="fixed top-0 w-full"> <!-- Navbar --> <nav class="flex items-center justify-between bg-gray-800 p-4 text-white z-50 border-b-2 border-red-600"> <div class="flex items-center justify-center mx-auto md:w-3/4 relative"> <a href="<?php echo e(route("home")); ?>" class="block hover:bg-gray-600 p-2 bg-gray-700">Beranda</a> <button wire:click="toggleNavbar" class="text-white focus:outline-none lg:hidden"> <svg class="w-6 h-6" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"> <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M4 6h16M4 12h16M4 18h16"></path> </svg> </button> </div> </nav> </div> <div class="w-screen sm:max-w-3xl mt-6 px-6 py-4 bg-slate-800 border-2 border-red-600 text-red-600 shadow-md overflow-hidden sm:rounded-lg"> <?php echo e($slot); ?> </div> </div> </body> </html> <?php /**PATH /home/okaminime0881/anime/resources/views/layouts/login.blade.php ENDPATH**/ ?>
Back