@extends('layouts.auth') @section('template_title') Reset Password @endsection @section('content')

{{ trans('titles.resetPword') }}

{!! Form::open(['route' => 'password.request', 'method' => 'POST', 'class' => 'auth-form', 'id' => 'reset']) !!}
{!! Form::email('email', $email or old('email'), array('id' => 'email', 'class' => 'mdl-textfield__input', )) !!} {!! Form::label('email', trans('auth.email') , array('class' => 'mdl-textfield__label')); !!} @if ($errors->has('email')){{{ $errors->first('email') }}} @endif
{!! Form::password('password', array('id' => 'userpass', 'class' => 'mdl-textfield__input')) !!} {!! Form::label('password', trans('auth.password') , array('class' => 'mdl-textfield__label')); !!} @if ($errors->has('password')) {{ trans('auth.pwLoginError') }} @endif
{!! Form::password('password_confirmation', array('id' => 'password_confirmation', 'class' => 'mdl-textfield__input')) !!} {!! Form::label('password_confirmation', trans('auth.ph_password_conf') , array('class' => 'mdl-textfield__label')); !!} @if ($errors->has('password_confirmation')) {{ trans('auth.pwLoginError') }} @endif
@if(config('settings.reCaptchStatus'))
@endif {!! Form::button(''.trans('auth.resetPassword').'
', array('class' => 'mdl-button mdl-js-button mdl-js-ripple-effect center mdl-color--primary mdl-color-text--white mdl-button--raised full-span margin-bottom-1 margin-top-2','type' => 'submit','id' => 'submit')) !!} {!! Form::close() !!}
{!! HTML::link(url('/register'), trans('auth.register'), array('id' => 'register', 'class' => 'mdl-button mdl-button--colored mdl-js-button mdl-js-ripple-effect left')) !!} {!! HTML::link(url('/login'), trans('auth.login'), array('id' => 'login', 'class' => 'mdl-button mdl-button--colored mdl-js-button mdl-js-ripple-effect right')) !!}
@endsection