@php $title = 'Recuperar senha'; $breadcrumb[] = ['Entrar' => 'login']; $breadcrumb[] = 'Recuperar senha'; @endphp @extends('layouts.master') @section('content') @include('layouts.header')
@component('_components.title') {{ $title }} @endcomponent
@if (session()->has('error')) @endif
{{ print_r(session(), 1) }}

Crie uma nova senha

@if ($errors->has('password')) @endif @if ($errors->has('email')) @endif {{ Form::open(['action' => 'Auth\ResetPasswordController@reset']) }} {{ Form::hidden('token', $token) }}

Insira pelo menos 6 caracteres

As senhas não coincidem

{{ Form::submit('Salvar', ['class' => 'button button-md fs-md font-weight-light bg-gradient text-white text-uppercase rounded btn-block btn-md-inline-block']) }} {{ Form::close() }}
@include('layouts.footer') @endsection