Skip to content

Commit aea1700

Browse files
bugfixing
1 parent 66e0e55 commit aea1700

File tree

4 files changed

+72
-68
lines changed

4 files changed

+72
-68
lines changed

README.md

Lines changed: 27 additions & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -269,40 +269,35 @@ Within the download you'll find the following directories and files:
269269
```
270270
271271
├── components
272-
│ ├── buttons.blade.php
273-
│ ├── forms.blade.php
274-
│ ├── modals.blade.php
275-
│ ├── notifications.blade.php
276-
│ └── typography.blade.php
277-
├── dashboard.blade.php
272+
│ ├── buttons.blade.php # Buttons page
273+
│ ├── forms.blade.php # Forms page
274+
│ ├── modals.blade.php # Modals page
275+
│ ├── notifications.blade.php # Notifications page
276+
│ └── typography.blade.php # Typography page
277+
├── dashboard.blade.php # Dashboard
278278
├── layouts
279-
│ ├── app.blade.php
280-
│ ├── base.blade.php
281-
│ ├── footer2.blade.php
282-
│ ├── footer.blade.php
283-
│ ├── nav.blade.php
284-
│ ├── sidenav.blade.php
285-
│ └── topbar.blade.php
286-
├── livewire
287-
│ ├── auth
288-
│ │ ├── login.blade.php
279+
│ ├── app.blade.php # Including layouts based on routes
280+
│ ├── base.blade.php # All the styles and scripts included
281+
│ ├── footer2.blade.php # Footer for pages without sidenav
282+
│ ├── footer.blade.php # Footer for pages with sidenav
283+
│ ├── nav.blade.php # Nav for mobile view
284+
│ ├── sidenav.blade.php # The sidebar menu
285+
│ └── topbar.blade.php # Search bar, notifications and user area
286+
├── livewire # All the pages that are using livewire functionality
287+
│ ├── auth # Handles auth routes (login and register)
288+
│ │ ├── login.blade.php
289289
│ │ └── register.blade.php
290-
│ ├── forgot-password.blade.php
291-
│ ├── forgot-password-example.blade.php
292-
│ ├── login-example.blade.php
293-
│ ├── logout.blade.php
294-
│ ├── profile.blade.php
295-
│ ├── profile-example.blade.php
296-
│ ├── register-example.blade.php
297-
│ ├── reset-password.blade.php
298-
│ ├── upgrade-to-pro.blade.php
299-
│ └── users.blade.php
300-
├── lock.blade.php
301-
├── reset-password-example.blade.php
302-
└── transactions.blade.php
303-
├── 404.blade.php
304-
├── 500.blade.php
305-
├── bootstrap-tables.blade.php
290+
│ ├── forgot-password.blade.php # Handles the forgot-password form
291+
│ ├── logout.blade.php # Logout functionality
292+
│ ├── profile.blade.php # Profile page
293+
│ ├── reset-password.blade.php # Handles the reset password form
294+
│ └── users.blade.php # Users table
295+
├── upgrade-to-pro.blade.php # Upgrade to pro page
296+
├── lock.blade.php # Lock page
297+
└── transactions.blade.php # Transactions page
298+
├── 404.blade.php # Error 404 page
299+
├── 500.blade.php # Error 500 page
300+
├── bootstrap-tables.blade.php # Bootstrap tables page
306301
```
307302

308303
## Browser Support

public/documentation/getting-started/file-structure/index.html

Lines changed: 32 additions & 35 deletions
Original file line numberDiff line numberDiff line change
@@ -475,41 +475,38 @@ <h2 id="source-files">Source files</h2>
475475

476476
<code>
477477
<pre class="text-gray-800">
478-
├── components
479-
│ ├── buttons.blade.php
480-
│ ├── forms.blade.php
481-
│ ├── modals.blade.php
482-
│ ├── notifications.blade.php
483-
│ └── typography.blade.php
484-
├── dashboard.blade.php
485-
├── layouts
486-
│ ├── app.blade.php
487-
│ ├── base.blade.php
488-
│ ├── footer2.blade.php
489-
│ ├── footer.blade.php
490-
│ ├── nav.blade.php
491-
│ ├── sidenav.blade.php
492-
│ └── topbar.blade.php
493-
├── livewire
494-
│ ├── auth
495-
│ │ ├── login.blade.php
496-
│ │ └── register.blade.php
497-
│ ├── forgot-password.blade.php
498-
│ ├── forgot-password-example.blade.php
499-
│ ├── login-example.blade.php
500-
│ ├── logout.blade.php
501-
│ ├── profile.blade.php
502-
│ ├── profile-example.blade.php
503-
│ ├── register-example.blade.php
504-
│ ├── reset-password.blade.php
505-
│ ├── upgrade-to-pro.blade.php
506-
│ └── users.blade.php
507-
├── lock.blade.php
508-
├── reset-password-example.blade.php
509-
└── transactions.blade.php
510-
├── 404.blade.php
511-
├── 500.blade.php
512-
├── bootstrap-tables.blade.php
478+
```
479+
├── components
480+
│ ├── buttons.blade.php # Buttons page
481+
│ ├── forms.blade.php # Forms page
482+
│ ├── modals.blade.php # Modals page
483+
│ ├── notifications.blade.php # Notifications page
484+
│ └── typography.blade.php # Typography page
485+
├── dashboard.blade.php # Dashboard
486+
├── layouts
487+
│ ├── app.blade.php # Including layouts based on routes
488+
│ ├── base.blade.php # All the styles and scripts included
489+
│ ├── footer2.blade.php # Footer for pages without sidenav
490+
│ ├── footer.blade.php # Footer for pages with sidenav
491+
│ ├── nav.blade.php # Nav for mobile view
492+
│ ├── sidenav.blade.php # The sidebar menu
493+
│ └── topbar.blade.php # Search bar, notifications and user area
494+
├── livewire # All the pages that are using livewire functionality
495+
│ ├── auth # Handles auth routes (login and register)
496+
│ │ ├── login.blade.php
497+
│ │ └── register.blade.php
498+
│ ├── forgot-password.blade.php # Handles the forgot-password form
499+
│ ├── logout.blade.php # Logout functionality
500+
│ ├── profile.blade.php # Profile page
501+
│ ├── reset-password.blade.php # Handles the reset password form
502+
│ └── users.blade.php # Users table
503+
├── upgrade-to-pro.blade.php # Upgrade to pro page
504+
├── lock.blade.php # Lock page
505+
└── transactions.blade.php # Transactions page
506+
├── 404.blade.php # Error 404 page
507+
├── 500.blade.php # Error 500 page
508+
├── bootstrap-tables.blade.php # Bootstrap tables page
509+
```
513510
</pre>
514511
</code>
515512

resources/views/layouts/base.blade.php

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,18 @@
2222
<meta property="og:description" content="Volt Laravel Admin Dashboard features dozens of UI components and a Laravel backend with Livewire & Alpine.js"></meta>
2323
<meta property="og:site_name" content="Themesberg"></meta>
2424
@endif
25+
26+
<!-- Favicons -->
27+
<link rel="apple-touch-icon" href="../../assets/img/favicon/apple-touch-icon.png" sizes="180x180">
28+
<link rel="icon" href="../../assets/img/favicon/favicon-32x32.png" sizes="32x32" type="image/png">
29+
<link rel="icon" href="../../assets/img/favicon/favicon-16x16.png" sizes="16x16" type="image/png">
30+
31+
<link rel="mask-icon" href="../../assets/img/favicon/safari-pinned-tab.svg" color="#563d7c">
32+
<link rel="icon" href="../../assets/img/favicon/favicon.ico">
33+
<meta name="msapplication-config" content="../../assets/img/favicons/browserconfig.xml">
34+
<meta name="theme-color" content="#563d7c">
35+
<meta name="viewport" content="width=device-width,initial-scale=1,shrink-to-fit=no">
36+
2537
<!-- Apex Charts -->
2638
<link type="text/css" href="/vendor/apexcharts/apexcharts.css" rel="stylesheet">
2739

resources/views/livewire/auth/login.blade.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ class="fas fa-angle-left me-2"></i> Back to homepage</a></p> --}}
1313
<h1 class="mb-3 h3">Welcome back</h1>
1414
<p class="mb-0"> Create new account or
1515
<p class="mb-0">Sign in with these credentials:</p>
16-
<p class="mb-0"> Email: <strong>admin@argon.com</strong> Password:
16+
<p class="mb-0"> Email: <strong>admin@volt.com</strong> Password:
1717
<strong>secret</strong></p>
1818

1919
</p>

0 commit comments

Comments
 (0)