diff --git a/resources/views/admin/layouts/components/header.blade.php b/resources/views/admin/layouts/components/header.blade.php index 8ed866e..d4482e2 100644 --- a/resources/views/admin/layouts/components/header.blade.php +++ b/resources/views/admin/layouts/components/header.blade.php @@ -18,7 +18,7 @@ class="sr-only">Loading...
@@ -267,7 +267,7 @@ class="pull-right">6 hr

data-feather="maximize">
@endif @if (config('adminetic.profile', true)) -
  • +
  • {{ auth()->user()->name }} diff --git a/resources/views/admin/layouts/components/sidebar.blade.php b/resources/views/admin/layouts/components/sidebar.blade.php index d51c5b1..98cc787 100644 --- a/resources/views/admin/layouts/components/sidebar.blade.php +++ b/resources/views/admin/layouts/components/sidebar.blade.php @@ -10,14 +10,14 @@
  • favicon + width="50" alt="favicon">
    + \ No newline at end of file diff --git a/resources/views/components/create-page.blade.php b/resources/views/components/create-page.blade.php index 1ff5257..8c86e16 100644 --- a/resources/views/components/create-page.blade.php +++ b/resources/views/components/create-page.blade.php @@ -35,7 +35,7 @@ @endif
    - {{ $description ?? 'Create ' . $name . ' in the system' }}
    + {{ $description ?? ''}}
    The field labels marked with * are required input fields.
    diff --git a/resources/views/components/edit-page.blade.php b/resources/views/components/edit-page.blade.php index c1fbb0f..d2b4430 100644 --- a/resources/views/components/edit-page.blade.php +++ b/resources/views/components/edit-page.blade.php @@ -35,14 +35,22 @@ @endif
    - {{ $description ?? 'Edit ' . $name . ' in the system' }}
    + {{ $description ?? ''}}
    The field labels marked with * are required input fields.
    - - + @isset($buttons) {{ $buttons }} @endisset diff --git a/resources/views/components/index-page.blade.php b/resources/views/components/index-page.blade.php index 7ce7c59..261ebc9 100644 --- a/resources/views/components/index-page.blade.php +++ b/resources/views/components/index-page.blade.php @@ -33,7 +33,9 @@ @endif
    - {{ $description ?? 'List of all ' . $plural_name . ' in the system' }} +
    + {{ $description ?? 'List of all ' . $plural_name . ' in the system' }} +
    Create {{ $name ?? '' }} @@ -43,7 +45,8 @@
    -
    +
    {{ $content ?? '' }}
    diff --git a/resources/views/components/show-page.blade.php b/resources/views/components/show-page.blade.php index 8a6609f..45e086d 100644 --- a/resources/views/components/show-page.blade.php +++ b/resources/views/components/show-page.blade.php @@ -36,9 +36,22 @@
    - Back - Edit - Create + @isset($buttons) {{ $buttons }} @endisset