Skip to content

Instantly share code, notes, and snippets.

@olaysco
Last active July 26, 2020 16:37
Show Gist options
  • Save olaysco/0c00882a1894a728f3f0b84a8d56ade5 to your computer and use it in GitHub Desktop.
Save olaysco/0c00882a1894a728f3f0b84a8d56ade5 to your computer and use it in GitHub Desktop.
@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