@extends('layouts.auth_app') @section('title') Reset Password @endsection @section('content')

Set a New Password

@csrf @if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
{{ $errors->first('email') }}
{{ $errors->first('password') }}
{{ $errors->first('password_confirmation') }}
Recalled your login info? Sign In
@endsection