@extends('layouts.auth.app') @section('title', trans('reset_password.page.title')) @section('content')

@lang('reset_password.page.heading')

@lang('reset_password.page.description')

@if (session('status'))
{{ session('status') }}
@endif
@csrf
@if ($errors->has('email')) {{ $errors->first('email') }} @endif
@if ($errors->has('password')) {{ $errors->first('password') }} @endif
@if ($errors->has('password_confirmation')) {{ $errors->first('password_confirmation') }} @endif
@if (Route::has('login'))
@lang('reset_password.page.question.signin') @lang('reset_password.page.buttons.login')
@endif
@endsection