@extends('auth-base') @section('title', 'Admin Login') @php use App\Models\Backend\ThemeSetting; use App\Models\Backend\ThemeRule; $themeSettings = ThemeSetting::settingArray(); $welcomeRule = ThemeRule::where('rule_name', 'Login Welcome Page')->first(); $welcomeData = $welcomeRule ? ($themeSettings[$welcomeRule->rule_id] ?? []) : []; $welcomeTitle = $welcomeData['title'] ?? ''; $welcomeDesc = $welcomeData['description'] ?? ''; @endphp @section('content')
{{ $welcomeDesc }}
@elseSign in to access dashboard
@endif