Skip to content

Commit fb66608

Browse files
Merge pull request #4 from laravel-frontend-presets/develop
Merge develop
2 parents 4e2bf95 + 1a55eb1 commit fb66608

File tree

4 files changed

+34
-20
lines changed

4 files changed

+34
-20
lines changed

src/argon-stubs/resources/views/auth/login.blade.php

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
@section('content')
44
@include('layouts.headers.guest')
5-
5+
66
<div class="container mt--8 pb-5">
77
<div class="row justify-content-center">
88
<div class="col-lg-5 col-md-7">
@@ -22,8 +22,11 @@
2222
</div>
2323
<div class="card-body px-lg-5 py-lg-5">
2424
<div class="text-center text-muted mb-4">
25-
<small>{{ __('Or sign in with credentials') }}</small><br>
26-
<small>You can use <strong>admin@argon.com</strong> and <strong>secret</strong> to loggin</small>
25+
<small>
26+
Create new account OR Sign in with these credentials:
27+
<br>
28+
Username <strong>admin@argon.com</strong> Password: <strong>secret</strong>
29+
</small>
2730
</div>
2831
<form role="form" method="POST" action="{{ route('login') }}">
2932
@csrf

src/argon-stubs/resources/views/layouts/headers/guest.blade.php

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,7 @@
33
<div class="header-body text-center mb-7">
44
<div class="row justify-content-center">
55
<div class="col-lg-5 col-md-6">
6-
<h1 class="text-white">{{ __('Welcome!') }}</h1>
7-
<p class="text-lead text-light">
8-
{{ __('Use these awesome forms to login or create new account in your project for free.') }}
9-
</p>
6+
<h1 class="text-white">{{ __('Welcome to Argon Dashboard FREE Laravel Live Preview.') }}</h1>
107
</div>
118
</div>
129
</div>

src/argon-stubs/resources/views/layouts/navbars/sidebar.blade.php

Lines changed: 24 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -84,15 +84,27 @@
8484
</a>
8585
</li>
8686
<li class="nav-item">
87-
<a class="nav-link" href="{{ route('profile.edit') }}">
88-
<i class="ni ni-single-02 text-yellow"></i> {{ __('User profile') }}
89-
</a>
90-
</li>
91-
<li class="nav-item">
92-
<a class="nav-link" href="{{ route('user.index') }}">
93-
<i class="ni ni-bullet-list-67 text-red"></i> {{ __('User Management') }}
87+
<a class="nav-link active" href="#navbar-examples" data-toggle="collapse" role="button" aria-expanded="true" aria-controls="navbar-examples">
88+
<i class="fab fa-laravel" style="color: #f4645f;"></i>
89+
<span class="nav-link-text" style="color: #f4645f;">{{ __('Laravel Examples') }}</span>
9490
</a>
91+
92+
<div class="collapse show" id="navbar-examples">
93+
<ul class="nav nav-sm flex-column">
94+
<li class="nav-item">
95+
<a class="nav-link" href="{{ route('profile.edit') }}">
96+
{{ __('User profile') }}
97+
</a>
98+
</li>
99+
<li class="nav-item">
100+
<a class="nav-link" href="{{ route('user.index') }}">
101+
{{ __('User Management') }}
102+
</a>
103+
</li>
104+
</ul>
105+
</div>
95106
</li>
107+
96108
<li class="nav-item">
97109
<a class="nav-link" href="#">
98110
<i class="ni ni-planet text-blue"></i> {{ __('Icons') }}
@@ -113,6 +125,11 @@
113125
<i class="ni ni-circle-08 text-pink"></i> {{ __('Register') }}
114126
</a>
115127
</li>
128+
<li class="nav-item mb-5" style="position: absolute; bottom: 0;">
129+
<a class="nav-link" href="https://www.creative-tim.com/product/argon-dashboard-pro-laravel" target="_blank">
130+
<i class="ni ni-cloud-download-95"></i> Upgrade to PRO
131+
</a>
132+
</li>
116133
</ul>
117134
<!-- Divider -->
118135
<hr class="my-3">

src/argon-stubs/resources/views/welcome.blade.php

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,10 @@
33
@section('content')
44
<div class="header bg-gradient-primary py-7 py-lg-8">
55
<div class="container">
6-
<div class="header-body text-center mb-7">
6+
<div class="header-body text-center mt-7 mb-7">
77
<div class="row justify-content-center">
88
<div class="col-lg-5 col-md-6">
9-
<h1 class="text-white">{{ __('Welcome!') }}</h1>
10-
<p class="text-lead text-light">
11-
{{ __('Use Argon theme to create a great project.') }}
12-
</p>
9+
<h1 class="text-white">{{ __('Welcome to Argon Dashboard FREE Laravel Live Preview.') }}</h1>
1310
</div>
1411
</div>
1512
</div>
@@ -20,6 +17,6 @@
2017
</svg>
2118
</div>
2219
</div>
23-
20+
2421
<div class="container mt--10 pb-5"></div>
2522
@endsection

0 commit comments

Comments
 (0)