Last active
July 26, 2020 16:37
-
-
Save olaysco/0c00882a1894a728f3f0b84a8d56ade5 to your computer and use it in GitHub Desktop.
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
@if (session('status')) | |
<div class="alert alert-success" role="alert"> | |
{{ session('status') }} | |
</div> | |
@endif | |
<form method="POST" action="{{url('password/email')}}"> | |
@csrf | |
<div class="form-group"> | |
<label for="email" class="col-md-12 col-form-label text-center">{{ __('E-Mail Address') }}</label> | |
<div class="col-md-12"> | |
<input id="email" type="email" class="form-input @error('email') is-invalid @enderror" name="email" value="{{ old('email') }}" required autocomplete="email" autofocus> | |
@error('email') | |
<span class="invalid-feedback" role="alert"> | |
<strong>{{ $message }}</strong> | |
</span> | |
@enderror | |
</div> | |
</div> | |
<div class="form-group row mb-0"> | |
<div class="col-md-12"> | |
<input type="submit" name="submit" id="submit" class="form-submit" value="{{ __('Send Password Reset Link') }}"/> | |
</div> | |
</div> | |
</form> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment