2016-03-25 01:18:05 -07:00
|
|
|
@extends('layouts/basic')
|
|
|
|
|
2016-05-20 00:25:45 -07:00
|
|
|
|
|
|
|
{{-- Page content --}}
|
2016-03-25 01:18:05 -07:00
|
|
|
@section('content')
|
|
|
|
|
|
|
|
|
2016-05-20 00:25:45 -07:00
|
|
|
<form class="form-horizontal" role="form" method="POST" action="{{ url('/password/reset') }}">
|
|
|
|
{!! csrf_field() !!}
|
2016-03-25 01:18:05 -07:00
|
|
|
|
2016-05-20 00:25:45 -07:00
|
|
|
<div class="container">
|
|
|
|
<div class="row">
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<div class="col-md-4 col-md-offset-4">
|
|
|
|
|
|
|
|
<div class="box login-box" style="width: 100%">
|
|
|
|
<div class="box-header">
|
|
|
|
<h3 class="box-title"> {{ trans('auth/general.reset_password') }}</h3>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
<div class="login-box-body">
|
|
|
|
<div class="row">
|
|
|
|
|
|
|
|
<!-- Notifications -->
|
|
|
|
@include('notifications')
|
2016-03-25 01:18:05 -07:00
|
|
|
|
|
|
|
|
2016-05-20 00:25:45 -07:00
|
|
|
|
|
|
|
<input type="hidden" name="token" value="{{ $token }}">
|
|
|
|
|
|
|
|
<div class="form-group{{ $errors->has('email') ? ' has-error' : '' }}">
|
|
|
|
<label class="col-md-4 control-label">{{ trans('admin/users/table.email') }}</label>
|
|
|
|
|
|
|
|
<div class="col-md-6">
|
|
|
|
<input type="email" class="form-control" name="email" value="{{ $email or old('email') }}">
|
|
|
|
{!! $errors->first('email', '<span class="alert-msg"><i class="fa fa-times"></i> :message</span>') !!}
|
|
|
|
|
2016-03-25 01:18:05 -07:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="form-group{{ $errors->has('password') ? ' has-error' : '' }}">
|
2016-05-20 00:25:45 -07:00
|
|
|
<label class="col-md-4 control-label">{{ trans('admin/users/table.password') }}</label>
|
2016-03-25 01:18:05 -07:00
|
|
|
|
|
|
|
<div class="col-md-6">
|
|
|
|
<input type="password" class="form-control" name="password">
|
2016-05-20 00:25:45 -07:00
|
|
|
{!! $errors->first('password', '<span class="alert-msg"><i class="fa fa-times"></i> :message</span>') !!}
|
2016-03-25 01:18:05 -07:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="form-group{{ $errors->has('password_confirmation') ? ' has-error' : '' }}">
|
2016-05-20 00:25:45 -07:00
|
|
|
<label class="col-md-4 control-label">{{ trans('admin/users/table.password_confirm') }}</label>
|
2016-03-25 01:18:05 -07:00
|
|
|
<div class="col-md-6">
|
|
|
|
<input type="password" class="form-control" name="password_confirmation">
|
2016-05-20 00:25:45 -07:00
|
|
|
{!! $errors->first('password_confirmation', '<span class="alert-msg"><i class="fa fa-times"></i> :message</span>') !!}
|
2016-03-25 01:18:05 -07:00
|
|
|
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
2016-05-20 00:25:45 -07:00
|
|
|
|
2016-03-25 01:18:05 -07:00
|
|
|
</div>
|
|
|
|
</div>
|
2016-05-20 00:25:45 -07:00
|
|
|
<div class="box-footer">
|
|
|
|
<button type="submit" class="btn btn-lg btn-primary btn-block">
|
|
|
|
{{ trans('auth/general.reset_password') }}
|
|
|
|
</button>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
</div>
|
2016-03-25 01:18:05 -07:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
2016-05-20 00:25:45 -07:00
|
|
|
</form>
|
|
|
|
|
|
|
|
@stop
|
|
|
|
|
|
|
|
|