Created
July 26, 2020 16:25
-
-
Save olaysco/72b6b41f35269cec6db2204a37669c75 to your computer and use it in GitHub Desktop.
link for
This file contains hidden or 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
<form method="POST" action="{{ route('password.update') }}"> | |
@csrf | |
<input type="hidden" name="token" value="{{ $token }}"> | |
<div class="form-group row"> | |
<label for="email" class="col-md-4 col-form-label text-md-right">{{ __('E-Mail Address') }}</label> | |
<div class="col-md-6"> | |
<input id="email" type="email" class="form-control @error('email') is-invalid @enderror" name="email" value="{{ $email ?? 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"> | |
<label for="password" class="col-md-4 col-form-label text-md-right">{{ __('Password') }}</label> | |
<div class="col-md-6"> | |
<input id="password" type="password" class="form-control @error('password') is-invalid @enderror" name="password" required autocomplete="new-password"> | |
@error('password') | |
<span class="invalid-feedback" role="alert"> | |
<strong>{{ $message }}</strong> | |
</span> | |
@enderror | |
</div> | |
</div> | |
<div class="form-group row"> | |
<label for="password-confirm" class="col-md-4 col-form-label text-md-right">{{ __('Confirm Password') }}</label> | |
<div class="col-md-6"> | |
<input id="password-confirm" type="password" class="form-control" name="password_confirmation" required autocomplete="new-password"> | |
</div> | |
</div> | |
<div class="form-group row mb-0"> | |
<div class="col-md-6 offset-md-4"> | |
<input type="submit" name="submit" id="submit" class="form-submit" value="{{ __('Reset Password') }}"/> | |
</div> | |
</div> | |
</form> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment