-
-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
04b7016
commit 2f0e62d
Showing
3 changed files
with
36 additions
and
36 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,34 +1,37 @@ | ||
<x-guest-layout> | ||
<x-authentication-card> | ||
<x-slot name="logo"> | ||
<x-authentication-card-logo /> | ||
</x-slot> | ||
|
||
<div class="mb-4 text-sm text-gray-600"> | ||
{{ __('Forgot your password? No problem. Just let us know your email address and we will email you a password reset link that will allow you to choose a new one.') }} | ||
</div> | ||
@extends('layouts.home') | ||
|
||
@section('content') | ||
<div class="h-full flex flex-col sm:justify-center items-center pt-3 sm:pt-0"> | ||
<div class="w-full sm:max-w-md px-6 py-4 bg-white shadow-md overflow-hidden sm:rounded-lg"> | ||
|
||
@session('status') | ||
<div class="mb-4 font-medium text-sm text-green-600"> | ||
{{ $value }} | ||
<div class="mb-4 text-sm text-gray-600"> | ||
{{ __('Forgot your password? No problem. Just let us know your email address and we will email you a password reset link that will allow you to choose a new one.') }} | ||
</div> | ||
@endsession | ||
|
||
<x-validation-errors class="mb-4" /> | ||
@session('status') | ||
<div class="mb-4 font-medium text-sm text-green-600"> | ||
{{ $value }} | ||
</div> | ||
@endsession | ||
|
||
<form method="POST" action="{{ route('password.email') }}"> | ||
@csrf | ||
<x-validation-errors class="mb-4" /> | ||
|
||
<div class="block"> | ||
<x-label for="email" value="{{ __('Email') }}" /> | ||
<x-input id="email" class="block mt-1 w-full" type="email" name="email" :value="old('email')" required autofocus autocomplete="username" /> | ||
</div> | ||
<form method="POST" action="{{ route('password.email') }}"> | ||
@csrf | ||
|
||
<div class="flex items-center justify-end mt-4"> | ||
<x-button> | ||
{{ __('Email Password Reset Link') }} | ||
</x-button> | ||
</div> | ||
</form> | ||
</x-authentication-card> | ||
</x-guest-layout> | ||
<div class="block"> | ||
<x-label for="email" value="{{ __('Email') }}" /> | ||
<x-input id="email" class="block mt-1 w-full" type="email" name="email" :value="old('email')" | ||
required autofocus autocomplete="username" /> | ||
</div> | ||
|
||
<div class="flex items-center justify-end mt-4"> | ||
<x-button> | ||
{{ __('Email Password Reset Link') }} | ||
</x-button> | ||
</div> | ||
</form> | ||
</div> | ||
</div> | ||
|
||
@endsection |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters