@section('content')
Reset Password
@if (Session::has('error'))
{{ trans(Session::get('reason')) }}
@endif
{{ Former::open('password/reset/' . $token) }}
{{ Former::text('email') }}
{{ Former::password('password') }}
{{ Former::password('password_confirmation', 'Password Confirmation')}}
{{ Former::success_button('Update Password')->type('submit') }}
{{ Former::close() }}
@stop