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') \ No newline at end of file diff --git a/resources/views/vendor/boilerplate/auth/login.blade.php b/resources/views/vendor/boilerplate/auth/login.blade.php index 348d65b8..3934b991 100644 --- a/resources/views/vendor/boilerplate/auth/login.blade.php +++ b/resources/views/vendor/boilerplate/auth/login.blade.php @@ -7,8 +7,8 @@ @component('boilerplate::auth.loginbox')

@lang('boilerplate::auth.login.intro')

{!! Form::open(['route' => 'boilerplate.login', 'method' => 'post', 'autocomplete'=> 'off']) !!} - @component('boilerplate::input', ['name' => 'email', 'placeholder' => 'boilerplate::auth.fields.email', 'append-text' => 'fas fa-envelope', 'type' => 'email'])@endcomponent - @component('boilerplate::input', ['name' => 'password', 'placeholder' => 'boilerplate::auth.fields.password', 'append-text' => 'fas fa-lock', 'type' => 'password'])@endcomponent + @component('boilerplate::input', ['name' => 'email', 'placeholder' => 'boilerplate::auth.fields.email', 'append-text' => 'fas fa-fw fa-envelope', 'type' => 'email'])@endcomponent + @component('boilerplate::password', ['name' => 'password', 'placeholder' => 'boilerplate::auth.fields.password', 'check' => false])@endcomponent
@component('boilerplate::icheck', ['name' => 'remember', 'checked' => old('remember') == 'on', 'label' => 'boilerplate::auth.login.rememberme', 'class' => 'text-sm'])@endcomponent diff --git a/resources/views/vendor/boilerplate/auth/passwords/reset.blade.php b/resources/views/vendor/boilerplate/auth/passwords/reset.blade.php index fa489fdd..1c6db920 100644 --- a/resources/views/vendor/boilerplate/auth/passwords/reset.blade.php +++ b/resources/views/vendor/boilerplate/auth/passwords/reset.blade.php @@ -5,9 +5,9 @@

@lang('boilerplate::auth.password_reset.intro')

{!! Form::open(['route' => 'boilerplate.password.reset.post', 'method' => 'post', 'autocomplete'=> 'off']) !!} {!! Form::hidden('token', $token) !!} - @component('boilerplate::input', ['name' => 'email', 'placeholder' => 'boilerplate::auth.fields.email', 'append-text' => 'fas fa-envelope', 'type' => 'email', 'value' => $email, 'autofocus' => true])@endcomponent - @component('boilerplate::input', ['name' => 'password', 'placeholder' => 'boilerplate::auth.fields.password', 'append-text' => 'fas fa-lock', 'type' => 'password'])@endcomponent - @component('boilerplate::input', ['name' => 'password_confirmation', 'placeholder' => 'boilerplate::auth.fields.password_confirm', 'append-text' => 'fas fa-lock', 'type' => 'password'])@endcomponent + @component('boilerplate::input', ['name' => 'email', 'placeholder' => 'boilerplate::auth.fields.email', 'append-text' => 'fas fa-fw fa-envelope', 'type' => 'email', 'value' => $email, 'autofocus' => true])@endcomponent + @component('boilerplate::password', ['name' => 'password', 'placeholder' => 'boilerplate::auth.fields.password'])@endcomponent + @component('boilerplate::password', ['name' => 'password_confirmation', 'placeholder' => 'boilerplate::auth.fields.password_confirm', 'check' => false])@endcomponent
diff --git a/resources/views/vendor/boilerplate/auth/register.blade.php b/resources/views/vendor/boilerplate/auth/register.blade.php index 6653c6a9..8414073f 100644 --- a/resources/views/vendor/boilerplate/auth/register.blade.php +++ b/resources/views/vendor/boilerplate/auth/register.blade.php @@ -4,11 +4,11 @@ @component('boilerplate::auth.loginbox') {!! Form::open(['route' => 'boilerplate.register', 'method' => 'post', 'autocomplete'=> 'off']) !!} - @component('boilerplate::input', ['name' => 'first_name', 'placeholder' => 'boilerplate::auth.fields.first_name', 'append-text' => 'fas fa-user', 'autofocus' => true])@endcomponent - @component('boilerplate::input', ['name' => 'last_name', 'placeholder' => 'boilerplate::auth.fields.last_name', 'append-text' => 'fas fa-user'])@endcomponent - @component('boilerplate::input', ['name' => 'email', 'placeholder' => 'boilerplate::auth.fields.email', 'append-text' => 'fas fa-envelope', 'type' => 'email'])@endcomponent - @component('boilerplate::input', ['name' => 'password', 'placeholder' => 'boilerplate::auth.fields.password', 'append-text' => 'fas fa-lock', 'type' => 'password'])@endcomponent - @component('boilerplate::input', ['name' => 'password_confirmation', 'placeholder' => 'boilerplate::auth.fields.password_confirm', 'append-text' => 'fas fa-lock', 'type' => 'password'])@endcomponent + @component('boilerplate::input', ['name' => 'first_name', 'placeholder' => 'boilerplate::auth.fields.first_name', 'append-text' => 'fas fa-fw fa-user', 'autofocus' => true])@endcomponent + @component('boilerplate::input', ['name' => 'last_name', 'placeholder' => 'boilerplate::auth.fields.last_name', 'append-text' => 'far fa-fw fa-user'])@endcomponent + @component('boilerplate::input', ['name' => 'email', 'placeholder' => 'boilerplate::auth.fields.email', 'append-text' => 'fas fa-fw fa-envelope', 'type' => 'email'])@endcomponent + @component('boilerplate::password', ['name' => 'password', 'placeholder' => 'boilerplate::auth.fields.password'])@endcomponent + @component('boilerplate::password', ['name' => 'password_confirmation', 'placeholder' => 'boilerplate::auth.fields.password_confirm', 'check' => false])@endcomponent