Edit File: login.blade.php
<!DOCTYPE html> <html lang="{{ str_replace('_', '-', app()->getLocale()) }}"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <meta name="csrf-token" content="{{ csrf_token() }}"> <title>{{ 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 --> @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="{{ 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"> {{ $slot }} </div> </div> </body> </html>
Back