Skip to content

Commit

Permalink
Merge pull request #229 from yungifez/dev
Browse files Browse the repository at this point in the history
Bug fixes
  • Loading branch information
yungifez authored Feb 10, 2023
2 parents 25b2e23 + 0aaa3fb commit 6757abb
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions resources/views/auth/forgot-password.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,11 @@

@section('body')
<x-partials.authentication-card>
@if (session('status'))
<x-alert colour="bg-green-500" title="Success" icon="fa fa-check" dismissOnTimeout="true" >
{{ session('status') }}
</x-alert>
@endif
<x-display-validation-errors />
<form action="{{route('password.email')}}" class="p-7 border-b" method="POST">
<p class="text-gray-600">
Expand Down
2 changes: 1 addition & 1 deletion resources/views/auth/reset-password.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<x-display-validation-errors />
<form action="{{route('password.update')}}" class="w-full p-3" method="POST" autocomplete="off">
<input type="hidden" name="token" value="{{ $request->route('token') }}">
<x-input name="email" id="email" type="email" label="Email"/>
<x-input name="email" id="email" type="email" label="Email" value="{{$request->input('email')}}"/>
<x-input name="password" id="password" type="password" label="New Password"/>
<x-input name="password_confirmation" id="password_confirmation" type="password" label="Confirm new password"/>
@csrf
Expand Down

0 comments on commit 6757abb

Please sign in to comment.