@extends('auth-base') @section('title', 'Admin Login') @section('content') @push('styles') @endpush
Logo

Admin Login

Sign in to access dashboard

@if (session('status'))
{{ session('status') }}
@endif
@csrf
@error('login')

{{ $message }}

@enderror
@error('password')

{{ $message }}

@enderror
@if (Route::has('password.request')) Forgot password? @endif

Demo Credentials:

Email/Username: superadmin@example.com / superadmin

Password: password

@push('scripts') @endpush @endsection