@extends('layouts.app') @section('title', 'SJL') @section('content')
{{-- Header --}}

Reset Password

Set a new password for your account.

@if ($errors->any())
    @foreach ($errors->all() as $e)
  • {{ $e }}
  • @endforeach
@endif @if (session('status'))
{{ session('status') }}
@endif
@csrf
Email is required
@error('email')
{{ $message }}
@enderror
New password is required
@error('password')
{{ $message }}
@enderror
Please confirm your new password
@error('password_confirmation')
{{ $message }}
@enderror
@endsection