Skip to content

Commit ff48f75

Browse files
committed
Merge branch 'release/1.0.12'
2 parents 59dfa1f + 390223c commit ff48f75

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

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": {

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)