castopod/app/Views/install/error.php
Yassine Doghri cba871c5df feat: add install wizard form to bootstrap database and create the first superadmin user
- generate .env file to configure instance's environment
- add phpdotenv dependency to verify .env file
- add AppSeeder to call all required seeds at once
- add env and superadmin form views using form helpers

closes #2
2020-10-15 14:41:28 +00:00

10 lines
264 B
PHP

<?= $this->extend('install/_layout') ?>
<?= $this->section('content') ?>
<div class="px-4 py-2 mb-4 font-semibold text-red-900 bg-red-200 border border-red-700">
<?= lang('Install.messages.error', ['message' => $error]) ?>
</div>
<?= $this->endSection() ?>