Skip to content

Commit de0f7b2

Browse files
2 parents 2ca66c8 + 25d89a3 commit de0f7b2

File tree

4 files changed

+14
-5
lines changed

4 files changed

+14
-5
lines changed

changelog.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,3 +18,7 @@ All notable changes to `Argon` frontend preset for Laravel will be documented in
1818

1919
## Version 1.0.7 - 1.0.10
2020
- Menu structure changes, replace texts
21+
22+
## Version 1.0.11 - 2019-09-23
23+
- Update to Laravel 6.x
24+

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"homepage": "https://github.com/creativetimofficial/argon-dashboard",
66
"keywords": ["Laravel", "Preset", "Argon"],
77
"require": {
8-
"laravel/framework": "^5.5"
8+
"laravel/framework": "^5.5 || ^6.0"
99
},
1010
"autoload": {
1111
"psr-4": {

readme.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,11 @@
11
# Argon Frontend Preset For Laravel Framework 5.5 and Up
22

3-
Argon Frontend Preset For Laravel Framework 5.5 and Up
3+
![version](https://img.shields.io/badge/version-1.0.12-blue.svg) ![license](https://img.shields.io/badge/license-MIT-blue.svg) [![GitHub issues open](https://img.shields.io/github/issues/laravel-frontend-presets/argon.svg?maxAge=2592000)](https://github.com/laravel-frontend-presets/argon/issues?q=is%3Aopen+is%3Aissue) [![GitHub issues closed](https://img.shields.io/github/issues-closed-raw/laravel-frontend-presets/argon.svg?maxAge=2592000)](https://github.com/laravel-frontend-presets/argon/issues?q=is%3Aissue+is%3Aclosed)
44

55
*Current version*: Argon v1.0.10. More info at https://www.creative-tim.com/product/argon-dashboard-laravel.
66

7+
![Product Image](https://s3.amazonaws.com/creativetim_bucket/products/140/original/opt_ad_laravel_thumbnail.jpg?1548334671)
8+
79
## Note
810

911
We recommend installing this preset on a project that you are starting from scratch, otherwise your project's design might break.
@@ -17,7 +19,7 @@ If you don't already have an Apache local environment with PHP and MySQL, use on
1719
- Mac: https://wpshout.com/quick-guides/how-to-install-mamp-on-your-mac/
1820

1921
Also, you will need to install Composer: https://getcomposer.org/doc/00-intro.md
20-
And Laravel: https://laravel.com/docs/5.8/installation
22+
And Laravel: https://laravel.com/docs/6.x/installation
2123

2224
## Installation
2325

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

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,12 @@
1919
@endif
2020

2121
{{ __('Before proceeding, please check your email for a verification link.') }}
22-
2322
@if (Route::has('verification.resend'))
24-
{{ __('If you did not receive the email') }}, <a href="{{ route('verification.resend') }}">{{ __('click here to request another') }}</a>
23+
{{ __('If you did not receive the email') }},
24+
<form class="d-inline" method="POST" action="{{ route('verification.resend') }}">
25+
@csrf
26+
<button type="submit" class="btn btn-link p-0 m-0 align-baseline">{{ __('click here to request another') }}</button>.
27+
</form>
2528
@endif
2629
</div>
2730
</div>

0 commit comments

Comments
 (0)