diff --git a/resources/views/vendor/boilerplate/auth/firstlogin.blade.php b/resources/views/vendor/boilerplate/auth/firstlogin.blade.php
index ac182056..fac14a59 100644
--- a/resources/views/vendor/boilerplate/auth/firstlogin.blade.php
+++ b/resources/views/vendor/boilerplate/auth/firstlogin.blade.php
@@ -10,8 +10,8 @@
@lang('boilerplate::auth.firstlogin.intro')
- @component('boilerplate::input', ['name' => 'password', 'placeholder' => 'boilerplate::auth.fields.password', 'append-text' => 'fas fa-lock', 'type' => 'password', 'autofocus' => true])@endcomponent
- @component('boilerplate::input', ['name' => 'password_confirmation', 'placeholder' => 'boilerplate::auth.fields.password_confirm', 'append-text' => 'fas fa-lock', 'type' => 'password'])@endcomponent
+ @component('boilerplate::password', ['name' => 'password', 'placeholder' => 'boilerplate::auth.fields.password', 'autofocus' => true])@endcomponent
+ @component('boilerplate::password', ['name' => 'password_confirmation', 'placeholder' => 'boilerplate::auth.fields.password_confirm', 'check' => false])@endcomponent
diff --git a/resources/views/vendor/boilerplate/auth/layout.blade.php b/resources/views/vendor/boilerplate/auth/layout.blade.php
index 258a732d..79382968 100644
--- a/resources/views/vendor/boilerplate/auth/layout.blade.php
+++ b/resources/views/vendor/boilerplate/auth/layout.blade.php
@@ -7,13 +7,19 @@
{{ $title }} | {{ config('app.name') }}
+
+@stack('plugin-css')
-
+@stack('css')
@yield('content')
+
+
+
+@stack('js')