diff --git a/app/Language/en/Admin.php b/app/Language/en/Admin.php
new file mode 100644
index 00000000..62a75a8e
--- /dev/null
+++ b/app/Language/en/Admin.php
@@ -0,0 +1,12 @@
+ 'Admin dashboard',
+ 'welcome_message' => 'Welcome to the admin area!',
+];
diff --git a/app/Language/en/AdminNavigation.php b/app/Language/en/AdminNavigation.php
index 212863f5..d9c2ada0 100644
--- a/app/Language/en/AdminNavigation.php
+++ b/app/Language/en/AdminNavigation.php
@@ -20,4 +20,9 @@ return [
'pages' => 'Pages',
'page-list' => 'All pages',
'page-create' => 'New Page',
+ 'account' => [
+ 'my-account' => 'My account',
+ 'change-password' => 'Change password',
+ 'logout' => 'Logout',
+ ],
];
diff --git a/app/Views/_assets/styles/radioBtn.css b/app/Views/_assets/styles/radioBtn.css
index 7e6045d6..1007c673 100644
--- a/app/Views/_assets/styles/radioBtn.css
+++ b/app/Views/_assets/styles/radioBtn.css
@@ -7,7 +7,7 @@
}
.form-radio-btn + label {
- @apply px-2 py-1 text-sm text-black bg-white border rounded cursor-pointer;
+ @apply inline-block px-2 py-1 text-sm text-black bg-white border rounded cursor-pointer;
&:hover {
@apply bg-green-100;
diff --git a/app/Views/admin/_layout.php b/app/Views/admin/_layout.php
index d18c2459..d04edd4e 100644
--- a/app/Views/admin/_layout.php
+++ b/app/Views/admin/_layout.php
@@ -30,7 +30,7 @@
'pageTitle'
) ?>
-
= $this->renderSection(
+
= $this->renderSection(
'headerRight'
) ?>
diff --git a/app/Views/admin/_sidebar.php b/app/Views/admin/_sidebar.php
index d6e1bf49..b57cccfe 100644
--- a/app/Views/admin/_sidebar.php
+++ b/app/Views/admin/_sidebar.php
@@ -52,13 +52,12 @@ $navigation = [
-
diff --git a/app/Views/admin/dashboard.php b/app/Views/admin/dashboard.php
index 214ccaaf..58bc0229 100644
--- a/app/Views/admin/dashboard.php
+++ b/app/Views/admin/dashboard.php
@@ -2,13 +2,13 @@
= $this->extend('admin/_layout') ?>
= $this->section('title') ?>
-Dashboard
+= lang('Admin.dashboard') ?>
= $this->endSection() ?>
= $this->section('pageTitle') ?>
-Admin dashboard
+= lang('Admin.dashboard') ?>
= $this->endSection() ?>
= $this->section('content') ?>
-Welcome to the admin area!
+= lang('Admin.welcome_message') ?>
= $this->endsection() ?>
diff --git a/app/Views/admin/episode/create.php b/app/Views/admin/episode/create.php
index 30bf7fc1..e983158e 100644
--- a/app/Views/admin/episode/create.php
+++ b/app/Views/admin/episode/create.php
@@ -108,7 +108,7 @@
-= form_fieldset('', ['class' => 'flex mb-4 gap-1']) ?>
+= form_fieldset('', ['class' => 'mb-4']) ?>