Skip to content

Commit

Permalink
Merge pull request #30 from WailanTirajoh/auth/forgot-password
Browse files Browse the repository at this point in the history
feat: add session status
  • Loading branch information
WailanTirajoh authored Nov 25, 2023
2 parents d3ab138 + d85ff04 commit 0d8c457
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions resources/views/auth/passwords/email.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,11 @@ class="rounded-circle mx-auto" alt="logo" style="background-color: white;">

<div class="row">
<div class="col-lg-12">
@if (session('status'))
<div class="alert alert-success" role="alert">
{{ session('status') }}
</div>
@endif
<form onsubmit="return disableButton()" method="POST"
action="{{ route('password.email') }}"
style="display: flex; flex-direction: column; gap: 8px;"
Expand Down

0 comments on commit 0d8c457

Please sign in to comment.