@extends('layouts.app') @section('title', 'Masuk') @section('head') @if(!empty($storeLogoUrl)) @php $loginFaviconPath = !empty($storeLogo) ? public_path('uploads/logo/' . $storeLogo) : null; $loginFaviconUrl = $storeLogoUrl . (!empty($loginFaviconPath) && file_exists($loginFaviconPath) ? '?v=' . filemtime($loginFaviconPath) : ''); @endphp @endif @endsection @section('content') @php $currentThemeKey = \App\Services\SettingsService::get('theme', 'blue'); $allThemes = \App\Services\SettingsService::getAvailableThemes(); $storeTheme = $allThemes[$currentThemeKey] ?? $allThemes['blue']; $themePrimary = $storeTheme['primary']; $themePrimaryDark = $storeTheme['primary_dark']; $themeGradient = $storeTheme['gradient']; @endphp
@if(!empty($storeLogoUrl))
Logo
@endif

{{ $storeName }}

Masuk ke akun Anda untuk melanjutkan

@if(session('success'))

{{ session('success') }}

@endif @if(session('error') || $errors->any())

{{ session('error') ?? $errors->first() }}

@endif
@csrf
@error('login')

{{ $message }}

@enderror
@error('password')

{{ $message }}

@enderror
Lupa password?

{{ \App\Services\SettingsService::getStoreName() }}

Copyright © 2026. All rights reserved.

@endsection