I installed it on the web server to use Laravel template for Metronic, but I got the message below, so I looked it up, but I don't think there is a demo1._auth file.
View [layout.metronic.demo1._auth] not found.
'KT_THEME_LAYOUT_DIR' => 'layout/metronic/demo1'
What should I do?
Sorry for the inconvenience. Can you update the /config/settings.php file, remove metronic/demo1. We will fix it.
Replace 'layout/metronic/demo1' with just 'layout' like this.
Verify the KT_THEME_BOOTSTRAP section is correctly defined as follows
"KT_THEME_BOOTSTRAP" => [
"default" => \App\Core\Bootstrap\BootstrapDefault::class,
"auth" => \App\Core\Bootstrap\BootstrapAuth::class,
"system" => \App\Core\Bootstrap\BootstrapSystem::class,
],
//...
"KT_THEME_LAYOUT_DIR" => "layout",