@extends('frontend.layouts.app') @section('title', app_name() . ' | '.__('labels.frontend.passwords.reset_password_box_title')) @push('after-styles') @endpush @section('content')
{{ __('labels.frontend.passwords.reset_password_box_title') }}
@if (session('status'))
{{ session('status') }}
@endif {{ html()->form('POST', route('frontend.auth.password.email.post'))->open() }}
{{ html()->label(__('validation.attributes.frontend.email'))->for('email') }} {{ html()->email('email') ->class('form-control') ->placeholder(__('validation.attributes.frontend.email')) ->attribute('maxlength', 191) ->required() ->autofocus() }}
{{ form_submit(__('labels.frontend.passwords.send_password_reset_link_button')) }}
{{ html()->form()->close() }}
@endsection