csrfTokenField(ctx: IRequestContext,options?: Pick<CsrfFormOptions, "fieldName">): string
Renders this session's CSRF token as a hidden HTML form field.
The returned markup uses the same mint-once token path as
getCsrfToken. Its field name must match the fieldName supplied
to SessionPlugin({ csrf: ... }); omitting it uses the shared '_csrf'
default. In an escaping Hono template, wrap the returned trusted markup with
that template runtime's raw() helper.
optional
options: Pick<CsrfFormOptions, "fieldName">
The field-name option shared with form-CSRF configuration