@extends('layouts.site') @section('title') Redefinir senha - {{env('APP_NAME')}} @endsection @section('content')

Redefinir senha

@if (isset($errors) && count($errors) > 0)
Erros encontrados!
    @foreach($errors->all() as $error)
  • {{$error}}
  • @endforeach
@endif @if (session('success'))
{{ session('success') }}
@endif @if (session('erro'))
{{ session('erro') }}
@endif

💳 Redefinir senha:

{{ csrf_field() }}
@if ($errors->has('email')) {{ $errors->first('email') }} @endif
@if ($errors->has('password')) {{ $errors->first('password') }} @endif
@if ($errors->has('password_confirmation')) {{ $errors->first('password_confirmation') }} @endif

@endsection @section('script') @endsection