diff options
| author | Camil Staps | 2016-09-25 23:56:46 +0200 | 
|---|---|---|
| committer | Camil Staps | 2016-09-26 01:02:05 +0200 | 
| commit | 33ad0c14d168d36a4e7ad42dc6aa6a37a7335849 (patch) | |
| tree | 0543b7d92f7f0b7706f4313ba10b18483f747798 /resources/views/auth/passwords/email.blade.php | |
| parent | Added unique visitors to statistics (diff) | |
Change from lumen 5.2 to laravel 5.3 (Resolves #1)
Diffstat (limited to 'resources/views/auth/passwords/email.blade.php')
| -rw-r--r-- | resources/views/auth/passwords/email.blade.php | 47 | 
1 files changed, 47 insertions, 0 deletions
| diff --git a/resources/views/auth/passwords/email.blade.php b/resources/views/auth/passwords/email.blade.php new file mode 100644 index 0000000..62e0120 --- /dev/null +++ b/resources/views/auth/passwords/email.blade.php @@ -0,0 +1,47 @@ +@extends('layouts.master') + +<!-- Main Content --> +@section('master-content') +<div class="container"> +    <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 + +                    <form class="form-horizontal" role="form" method="POST" action="{{ url('/password/email') }}"> +                        {{ csrf_field() }} + +                        <div class="form-group{{ $errors->has('email') ? ' has-error' : '' }}"> +                            <label for="email" class="col-md-4 control-label">E-Mail Address</label> + +                            <div class="col-md-6"> +                                <input id="email" type="email" class="form-control" name="email" value="{{ old('email') }}" required> + +                                @if ($errors->has('email')) +                                    <span class="help-block"> +                                        <strong>{{ $errors->first('email') }}</strong> +                                    </span> +                                @endif +                            </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> +                </div> +            </div> +        </div> +    </div> +</div> +@endsection | 
