Tudo o que está dentro do formulário não está aparecendo no navegador, sabem o que pode estar acontecendo?
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:ui="http://xmlns.jcp.org/jsf/facelets"
xmlns:h="http://xmlns.jcp.org/jsf/html"
xmlns:f="http://xmlns.jcp.org/jsf/core">
<ui:composition template="">
<ui:define name="header">
Add your header here or delete to use the default
</ui:define>
<ui:define name="content">
Add your content here or delete to use the default
</ui:define>
<ui:define name="footer">
Add your footer here or delete to use the default
</ui:define>
</ui:composition>
<h:form>
<div>
<h:outputLabel value="titulo" />
<h:inputText value="#{adminLivrosBean.livro.titulo}"/>
</div>
<div>
<h:outputLabel value="descricao" />
<h:inputTextarea rows="4" cols="8" value="#{adminLivrosBean.livro.descricao}" />
</div>
<h:outputLabel value="Números de Páginas" />
<h:inputText value="#{adminLivrosBean.livro.numeroPaginas}"/>
<div>
<h:outputLabel value="Preço" />
<h:inputText value="#{adminLivrosBean.livro.preco}"/>
</div>
<h:commandButton value="Cadastrar" />
</h:form>
</html>