Last active
August 29, 2015 14:25
-
-
Save andreferraro/a283b2fb2a5ec8eaac52 to your computer and use it in GitHub Desktop.
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
@extends('layout') | |
@section('content') | |
<div class="container-fluid"> | |
<div class="row"> | |
<div class="col-md-8 col-md-offset-2"> | |
<div class="panel panel-default"> | |
<div class="panel-heading">Reset Password</div> | |
<div class="panel-body"> | |
@if (session('status')) | |
<div class="alert alert-success"> | |
{{ session('status') }} | |
</div> | |
@endif | |
@if (count($errors) > 0) | |
<div class="alert alert-danger"> | |
<strong>Whoops!</strong> There were some problems with your input.<br><br> | |
<ul> | |
@foreach ($errors->all() as $error) | |
<li>{{ $error }}</li> | |
@endforeach | |
</ul> | |
</div> | |
@endif | |
<form class="form-horizontal" role="form" method="POST" action="/forgot"> | |
<input type="hidden" name="_token" value="{{ csrf_token() }}"> | |
<div class="form-group"> | |
<label class="col-md-4 control-label">E-Mail Address</label> | |
<div class="col-md-6"> | |
<input type="email" class="form-control" name="email" value="{{ old('email') }}"> | |
</div> | |
</div> | |
<div class="form-group"> | |
<div class="col-md-6 col-md-offset-4"> | |
<button type="submit" class="btn btn-primary"> | |
Send Password Reset Link | |
</button> | |
</div> | |
</div> | |
</form> | |
<br/><a href="{{ url('password/reset/'.csrf_token()) }}">Click here to reset your password</a> | |
</div> | |
</div> | |
</div> | |
</div> | |
</div> | |
@endsection |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment