@extends('front.template') @section('main')
@if(session()->has('error')) @include('partials/error', ['type' => 'danger', 'message' => session('error')]) @endif

{{ trans('front/password.title-reset') }}


{{ trans('front/password.reset-info') }}

{!! Form::open(['url' => 'password/reset', 'method' => 'post', 'role' => 'form']) !!}
{!! Form::hidden('token', $token) !!} {!! Form::control('email', 6, 'email', $errors, trans('front/password.email')) !!} {!! Form::control('password', 6, 'password', $errors, trans('front/password.password'), null, [trans('front/password.warning'), trans('front/password.warning-password')]) !!} {!! Form::control('password', 6, 'password_confirmation', $errors, trans('front/password.confirm-password')) !!} {!! Form::submit(trans('front/form.send'), ['col-lg-12']) !!}
{!! Form::close() !!}
@stop @section('scripts') @stop