@extends('front.layout.app') @section('title', 'Reset Password') @section('content')
@include('front.partials.sidemenu')

Reset password

Enter your account email to receive a link allowing you to reset your password.

@if(Session::has('success'))
{!! Session::get('success') !!}
@endif @if(Session::has('error'))
{!! Session::get('error') !!}
@endif
@csrf
@error('email') {{ $message }} @enderror
@error('password') {{ $message }} @enderror
@endsection