Before Width: | Height: | Size: 816 B After Width: | Height: | Size: 816 B |
Before Width: | Height: | Size: 5.7 KiB After Width: | Height: | Size: 5.7 KiB |
Before Width: | Height: | Size: 617 KiB After Width: | Height: | Size: 617 KiB |
Before Width: | Height: | Size: 1.6 KiB After Width: | Height: | Size: 1.6 KiB |
Before Width: | Height: | Size: 3.3 KiB After Width: | Height: | Size: 3.3 KiB |
Before Width: | Height: | Size: 1.0 MiB After Width: | Height: | Size: 1.0 MiB |
Before Width: | Height: | Size: 27 KiB After Width: | Height: | Size: 27 KiB |
Before Width: | Height: | Size: 654 B After Width: | Height: | Size: 654 B |
Before Width: | Height: | Size: 1.0 KiB After Width: | Height: | Size: 1.0 KiB |
Before Width: | Height: | Size: 7.8 KiB After Width: | Height: | Size: 7.8 KiB |
Before Width: | Height: | Size: 6.1 KiB After Width: | Height: | Size: 6.1 KiB |
Before Width: | Height: | Size: 6.7 KiB After Width: | Height: | Size: 6.7 KiB |
Before Width: | Height: | Size: 5.0 KiB After Width: | Height: | Size: 5.0 KiB |
Before Width: | Height: | Size: 14 KiB After Width: | Height: | Size: 14 KiB |
Before Width: | Height: | Size: 4.2 KiB After Width: | Height: | Size: 4.2 KiB |
Before Width: | Height: | Size: 7.0 KiB After Width: | Height: | Size: 7.0 KiB |
Before Width: | Height: | Size: 4.8 KiB After Width: | Height: | Size: 4.8 KiB |
Before Width: | Height: | Size: 6.5 KiB After Width: | Height: | Size: 6.5 KiB |
Before Width: | Height: | Size: 7.1 KiB After Width: | Height: | Size: 7.1 KiB |
Before Width: | Height: | Size: 6.4 KiB After Width: | Height: | Size: 6.4 KiB |
Before Width: | Height: | Size: 4.6 KiB After Width: | Height: | Size: 4.6 KiB |
Before Width: | Height: | Size: 7.2 KiB After Width: | Height: | Size: 7.2 KiB |
Before Width: | Height: | Size: 3.4 KiB After Width: | Height: | Size: 3.4 KiB |
Before Width: | Height: | Size: 7.8 KiB After Width: | Height: | Size: 7.8 KiB |
Before Width: | Height: | Size: 6.3 KiB After Width: | Height: | Size: 6.3 KiB |
Before Width: | Height: | Size: 4.3 KiB After Width: | Height: | Size: 4.3 KiB |
@ -0,0 +1,53 @@
|
||||
@extends('app') |
||||
@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 (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="{{ url('/password/reset') }}"> |
||||
<input type="hidden" name="_token" value="{{ csrf_token() }}"> |
||||
<input type="hidden" name="token" value="{{ $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"> |
||||
<label class="col-md-4 control-label">Password</label> |
||||
<div class="col-md-6"> |
||||
<input type="password" class="form-control" name="password"> |
||||
</div> |
||||
</div> |
||||
<div class="form-group"> |
||||
<label class="col-md-4 control-label">Confirm Password</label> |
||||
<div class="col-md-6"> |
||||
<input type="password" class="form-control" name="password_confirmation"> |
||||
</div> |
||||
</div> |
||||
<div class="form-group"> |
||||
<div class="col-md-6 col-md-offset-4"> |
||||
<button type="submit" class="btn btn-primary"> |
||||
Reset Password |
||||
</button> |
||||
</div> |
||||
</div> |
||||
</form> |
||||
</div> |
||||
</div> |
||||
</div> |
||||
</div> |
||||
</div> |
||||
@endsection |
Before Width: | Height: | Size: 94 KiB After Width: | Height: | Size: 94 KiB |