@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
Email
{{ $errors->first('email') }}
Password
{{ $errors->first('password') }}
Confirm Password
{{ $errors->first('password_confirmation') }}
Set a New Password
Recalled your login info?
Sign In
@endsection