You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
733 B
19 lines
733 B
@extends('layouts.guest')
|
|
|
|
@section('title', trans('auth.reset_password'))
|
|
|
|
@section('content')
|
|
<div class="col-md-4 col-md-offset-4">
|
|
<div class="login-panel panel panel-default">
|
|
<div class="panel-heading"><h3 class="panel-title">Reset Password</h3></div>
|
|
<div class="panel-body">
|
|
@include('auth.partials._notifications')
|
|
{!! Form::open(['route'=>'auth.reset-email']) !!}
|
|
{!! FormField::email('email') !!}
|
|
{!! Form::submit(trans('auth.send_reset_password_link'), ['class'=>'btn btn-success btn-block']) !!}
|
|
{!! link_to_route('auth.login','Back to Login', [],['class'=>'btn btn-default btn-block']) !!}
|
|
{!! Form::close() !!}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
@endsection
|