@if(session()->has('status'))
@include('partials/error', ['type' => 'success', 'message' => session('status')])
@endif
@if(session()->has('error'))
@include('partials/error', ['type' => 'danger', 'message' => session('error')])
@endif
{{ trans('front/password.title') }}
{{ trans('front/password.info') }}
{!! Form::open(['url' => 'password/email', 'method' => 'post', 'role' => 'form']) !!}
{!! Form::control('email', 6, 'email', $errors, trans('front/password.email')) !!}
{!! Form::submit(trans('front/form.send'), ['col-lg-12']) !!}
{!! Form::text('address', '', ['class' => 'hpet']) !!}
{!! Form::close() !!}