@extends('frontend.layouts.app') @section('title', app_name() . ' | ' . __('labels.frontend.passwords.reset_password_box_title')) @section('content') {{ html()->form('POST', route('frontend.auth.password.email.post'))->id('frm_forgot')->open() }} Reset Password @if(session('status')) {{ session('status') }} @endif @include('includes.partials.messages') {{ html()->label(__('validation.attributes.frontend.email'))->for('email') }} {{ html()->email('email') ->class('mb-0') ->placeholder(__('validation.attributes.frontend.email')) ->attribute('maxlength', 191) ->required() ->autofocus() }} Send Password Reset Link {{ html()->form()->close() }} @endsection