@extends('layouts.auth') @section('title', __('app.reset_password_title') . ' - SEU CRM') @section('content')

{{ __('app.reset_password_title') }}

{{ __('app.welcome_message') }}

@csrf
@if(isset($errors) && $errors->has('email'))
{{ $errors->first('email') }}
@endif
@if(isset($errors) && $errors->has('password'))
{{ $errors->first('password') }}
@endif
@endsection