@extends('platform::auth') @section('title', __('Forgot your password?')) @section('content')

{{ __('Reset Password') }}

@csrf
{!! \Orchid\Screen\Fields\Input::make('email') ->type('email') ->required() ->tabindex(1) ->autofocus() ->title('Email address') ->placeholder(__('Enter your email')) !!}
{!! \Orchid\Screen\Fields\Password::make('password') ->title('Password') ->autocomplete('new-password') ->required() ->tabindex(2) ->placeholder(__('Enter password')) !!}
{!! \Orchid\Screen\Fields\Password::make('password_confirmation') ->title('Confirm Password') ->autocomplete('new-password') ->required() ->tabindex(3) ->placeholder(__('Enter password')) !!}
@endsection