@extends('layouts.auth') @section('template_title') {{ trans('auth.resetPassword') }} @endsection @section('content')

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

{!! Form::open(array('url' => '/password/email', 'method' => 'POST', 'class' => 'auth-form', 'id' => 'reset')) !!}
{!! Form::email('email', null, 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
@if(config('settings.reCaptchStatus'))
@endif {!! Form::button(''.trans('auth.sendResetLink').'
', 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 @section('footer_scripts') {!! HTML::script('https://www.google.com/recaptcha/api.js', array('type' => 'text/javascript')) !!} @endsection