diff --git a/README.md b/README.md
index 21d1c18..db34e13 100644
--- a/README.md
+++ b/README.md
@@ -46,7 +46,7 @@ Auth has just been isntalled and you'll be able to visit the following authentic
## Auth Config
-You may also want to publish the auth config by running the following:
+You will also need to publish the auth config by running the following:
```
php artisan vendor:publish --tag=auth:config
diff --git a/resources/views/components/setup/config-notification.blade.php b/resources/views/components/setup/config-notification.blade.php
index d9421f9..2bc522e 100644
--- a/resources/views/components/setup/config-notification.blade.php
+++ b/resources/views/components/setup/config-notification.blade.php
@@ -1,5 +1,7 @@
-
-
-
Auth configurations have not been published
-
This is the subtext for your alert message, providing important information or instructions.
+
+
+
Auth configurations have not been published
+
+
You need to publish the authentication configs in order to change setup configurations.
+
\ No newline at end of file
diff --git a/resources/views/pages/auth/setup/appearance.blade.php b/resources/views/pages/auth/setup/appearance.blade.php
index b18199f..48741e8 100644
--- a/resources/views/pages/auth/setup/appearance.blade.php
+++ b/resources/views/pages/auth/setup/appearance.blade.php
@@ -58,43 +58,51 @@ public function update($key, $value){
-
-
- Select a tab
-
-
- My Account
- Company
- Team Members
- Billing
-
-
-
-
- @php
- $tabs = ['logo' => 'Logo', 'background' => 'Background', 'colors' => 'Colors', 'alignment' => 'Alignment', 'favicon' => 'Favicon'];
- @endphp
-
- @foreach($tabs as $slug => $tab)
- {{ $tab }}
- @endforeach
-
-
+
+ @if(!file_exists(base_path('config/devdojo/auth/appearance.php')))
+
+ @else
+
+
+
+ Select a tab
+
+
+ My Account
+ Company
+ Team Members
+ Billing
+
+
+
+
+ @php
+ $tabs = ['logo' => 'Logo', 'background' => 'Background', 'colors' => 'Colors', 'alignment' => 'Alignment', 'favicon' => 'Favicon'];
+ @endphp
+
+ @foreach($tabs as $slug => $tab)
+ {{ $tab }}
+ @endforeach
+
+
+
+
+
+
+
+
+
+
+
+
+
+ align
+
+
-
-
-
-
-
-
-
-
-
-
- align
-
+ @endif
diff --git a/resources/views/pages/auth/setup/index.blade.php b/resources/views/pages/auth/setup/index.blade.php
index 68fb883..9f32cf7 100644
--- a/resources/views/pages/auth/setup/index.blade.php
+++ b/resources/views/pages/auth/setup/index.blade.php
@@ -17,7 +17,9 @@
@volt('auth.setup')
-
+ @if(!file_exists(base_path('config/devdojo/auth/settings.php')))
+
+ @endif
Authentication Setup
Welcome to your authentication setup. Below you will find sections to help you configure and customize the auth in your application.
diff --git a/resources/views/pages/auth/setup/language.blade.php b/resources/views/pages/auth/setup/language.blade.php
new file mode 100644
index 0000000..95abc9c
--- /dev/null
+++ b/resources/views/pages/auth/setup/language.blade.php
@@ -0,0 +1,36 @@
+
+
+
+
+ @volt('auth.setup.language')
+
+
+
+
+ @if(!file_exists(base_path('config/devdojo/auth/language.php')))
+
+ @else
+
+ addl language stuff here
+
+ @endif
+
+
+ @endvolt
+
+
diff --git a/resources/views/pages/auth/setup/providers.blade.php b/resources/views/pages/auth/setup/providers.blade.php
index f670908..f52e3e4 100644
--- a/resources/views/pages/auth/setup/providers.blade.php
+++ b/resources/views/pages/auth/setup/providers.blade.php
@@ -36,41 +36,46 @@ public function update($slug, $checked){
-
- @foreach($this->providers as $network_slug => $provider)
-
-
-
-
-
- @if(isset($provider['svg']) && !empty(trim($provider['svg'])))
- {!! $provider['svg'] !!}
- @else
-
- @endif
-
-
-
{{ $provider['name'] }}
-
slug: {{ $network_slug }}
+
+ @if(!file_exists(base_path('config/devdojo/auth/providers.php')))
+
+ @else
+
+ @foreach($this->providers as $network_slug => $provider)
+
+
+
+
+
+ @if(isset($provider['svg']) && !empty(trim($provider['svg'])))
+ {!! $provider['svg'] !!}
+ @else
+
+ @endif
+
+
+
{{ $provider['name'] }}
+
slug: {{ $network_slug }}
+
+
+
+ @if(isset($provider['client_id']) && !empty(trim($provider['client_id'])) && isset($provider['client_secret']) && !empty(trim($provider['client_secret'])))
+
+
+
+ @else
+
+
+
+ @endif
+
+
-
- @if(isset($provider['client_id']) && !empty(trim($provider['client_id'])) && isset($provider['client_secret']) && !empty(trim($provider['client_secret'])))
-
-
-
- @else
-
-
-
- @endif
-
-
-
+ @endforeach
-
- @endforeach
-
+ @endif
+
@endvolt
diff --git a/resources/views/pages/auth/setup/settings.blade.php b/resources/views/pages/auth/setup/settings.blade.php
index 341e90e..2f03eae 100644
--- a/resources/views/pages/auth/setup/settings.blade.php
+++ b/resources/views/pages/auth/setup/settings.blade.php
@@ -36,20 +36,26 @@ public function update($key, $value){
-
- @foreach((array)$this->settings as $key => $value)
-
- @php
- $description = ($this->descriptions->settings[$key] ?? '');
- @endphp
- @if(is_bool($value))
-
- @else
-
- @endif
-
+
+ @if(!file_exists(base_path('config/devdojo/auth/settings.php')))
+
+ @else
+
+ @foreach((array)$this->settings as $key => $value)
+
+ @php
+ $description = ($this->descriptions->settings[$key] ?? '');
+ @endphp
+ @if(is_bool($value))
+
+ @else
+
+ @endif
+
+
+ @endforeach
- @endforeach
+ @endif
@endvolt