Skip to content

Commit 49aef73

Browse files
Merge pull request #4 from laravel-frontend-presets/master
Update readme
2 parents 5893401 + e927359 commit 49aef73

File tree

4 files changed

+14
-4
lines changed

4 files changed

+14
-4
lines changed

README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# [Now-ui Dashboard Laravel](https://www.creative-tim.com/live/now-ui-dashboard-laravel/?ref=ndl-readme) [![Tweet](https://img.shields.io/twitter/url/http/shields.io.svg?style=social&logo=twitter)](https://twitter.com/home?status=now-ui%20Dashboard%20Pro%20Laravel%E2%9D%A4%EF%B8%8F%0Ahttps%3A//now-ui-dashboard-laravel.creative-tim.com/%20%23%now-ui%20%23design%20%23dashboard%20%23laravel%20%23pro%20via%20%40CreativeTim)
22

3-
![version](https://img.shields.io/badge/version-1.0.0-blue.svg) ![license](https://img.shields.io/badge/license-MIT-blue.svg) [![GitHub issues open](https://img.shields.io/github/issues/creativetimofficial/ct-now-ui-dashboard-laravel.svg?maxAge=2592000)](https://github.com/creativetimofficial/ct-now-ui-dashboard-laravel/issues?q=is%3Aopen+is%3Aissue) [![GitHub issues closed](https://img.shields.io/github/issues-closed-raw/creativetimofficial/ct-now-ui-dashboard-laravel/ct-now-ui-dashboard-laravel.svg?maxAge=2592000)](https://github.com/creativetimofficial/ct-now-ui-dashboard-laravel/issues?q=is%3Aissue+is%3Aclosed)
3+
![version](https://img.shields.io/badge/version-1.0.1-blue.svg) ![license](https://img.shields.io/badge/license-MIT-blue.svg) [![GitHub issues open](https://img.shields.io/github/issues/laravel-frontend-presets/now-ui-dashboard.svg?maxAge=2592000)](https://github.com/laravel-frontend-presets/now-ui-dashboard/issues?q=is%3Aopen+is%3Aissue) [![GitHub issues closed](https://img.shields.io/github/issues-closed-raw/laravel-frontend-presets/now-ui-dashboard.svg?maxAge=2592000)](https://github.com/laravel-frontend-presets/now-ui-dashboard/issues?q=is%3Aissue+is%3Aclosed)
44

55
*Frontend version*: Now UI Dashboard v1.4.1. More info at https://www.creative-tim.com/product/now-ui-dashboard/?ref=ndl-readme
66

@@ -18,6 +18,8 @@ If you don't already have an Apache local environment with PHP and MySQL, use on
1818

1919
Also, you will need to install Composer: https://getcomposer.org/doc/00-intro.md
2020

21+
And Laravel: https://laravel.com/docs/6.x/installation
22+
2123
## Installation
2224

2325
After initializing a fresh instance of Laravel (and making all the necessary configurations), install the preset using one of the provided methods:

changelog.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,8 @@ All notable changes to `Now Ui Dashboard` frontend preset for Laravel will be do
88
- Now Ui v1.4.0 frontend theme
99
- Laravel Auth preset
1010
- Change user profile
11-
- User CRUD
11+
- User CRUD
12+
13+
## Version 1.0.1 - 2019-09-23
14+
15+
- Update to Laravel 6.x

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/now-ui-dashboard-laravel",
66
"keywords": ["Laravel", "Preset", "Now UI"],
77
"require": {
8-
"laravel/framework": "^5.5"
8+
"laravel/framework": "^5.5 || ^6.0"
99
},
1010
"autoload": {
1111
"psr-4": {

src/now-ui-stubs/resources/views/auth/verify.blade.php

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,11 @@
1515
@endif
1616

1717
{{ __('Before proceeding, please check your email for a verification link.') }}
18-
{{ __('If you did not receive the email') }}, <a href="{{ route('verification.resend') }}">{{ __('click here to request another') }}</a>.
18+
{{ __('If you did not receive the email') }},
19+
<form class="d-inline" method="POST" action="{{ route('verification.resend') }}">
20+
@csrf
21+
<button type="submit" class="btn btn-link p-0 m-0 align-baseline">{{ __('click here to request another') }}</button>.
22+
</form>
1923
</div>
2024
</div>
2125
</div>

0 commit comments

Comments
 (0)