aboutsummaryrefslogtreecommitdiff
path: root/resources/views/auth/passwords/reset.blade.php
diff options
context:
space:
mode:
authorCamil Staps2019-12-30 16:57:13 +0100
committerCamil Staps2020-01-03 19:06:02 +0100
commitad10a6467f76822b9289832eeb0d0ac2038b32d1 (patch)
tree1d78251ad49be1a744dc4573a1b3cf54e295e3a4 /resources/views/auth/passwords/reset.blade.php
parentClarify incorrect parsing message when input is short (diff)
Strip down for simple app for Greek verb λύω
Diffstat (limited to 'resources/views/auth/passwords/reset.blade.php')
-rw-r--r--resources/views/auth/passwords/reset.blade.php70
1 files changed, 0 insertions, 70 deletions
diff --git a/resources/views/auth/passwords/reset.blade.php b/resources/views/auth/passwords/reset.blade.php
deleted file mode 100644
index deb4d56..0000000
--- a/resources/views/auth/passwords/reset.blade.php
+++ /dev/null
@@ -1,70 +0,0 @@
-@extends('layouts.master')
-
-@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">
- <form class="form-horizontal" role="form" method="POST" action="{{ url('/password/reset') }}">
- {{ csrf_field() }}
-
- <input type="hidden" name="token" value="{{ $token }}">
-
- <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="{{ $email or old('email') }}" required autofocus>
-
- @if ($errors->has('email'))
- <span class="help-block">
- <strong>{{ $errors->first('email') }}</strong>
- </span>
- @endif
- </div>
- </div>
-
- <div class="form-group{{ $errors->has('password') ? ' has-error' : '' }}">
- <label for="password" class="col-md-4 control-label">Password</label>
-
- <div class="col-md-6">
- <input id="password" type="password" class="form-control" name="password" required>
-
- @if ($errors->has('password'))
- <span class="help-block">
- <strong>{{ $errors->first('password') }}</strong>
- </span>
- @endif
- </div>
- </div>
-
- <div class="form-group{{ $errors->has('password_confirmation') ? ' has-error' : '' }}">
- <label for="password-confirm" class="col-md-4 control-label">Confirm Password</label>
- <div class="col-md-6">
- <input id="password-confirm" type="password" class="form-control" name="password_confirmation" required>
-
- @if ($errors->has('password_confirmation'))
- <span class="help-block">
- <strong>{{ $errors->first('password_confirmation') }}</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">
- Reset Password
- </button>
- </div>
- </div>
- </form>
- </div>
- </div>
- </div>
- </div>
-</div>
-@endsection