# Getting started

## Installation

Install the package using Composer and Symfony Flex:

```bash
composer require sylius/admin-ui
```

## Basic routes

* **Dashboard** - sylius\_admin\_ui\_dashboard
* **Login** - sylius\_admin\_ui\_login
* **LoginCheck** - sylius\_admin\_ui\_login\_check
* **Logout** - sylius\_admin\_ui\_logout

## Minimalist templates

All these following templates are kind of "empty".

You can install the optional [BootstrapAdminUi package](/bootstrap-admin-ui/getting-started.md) to configure their contents automatically.

### Crud templates

* crud/create.html.twig
* crud/index.html.twig
* crud/show\.html.twig
* crud/update.html.twig

*Usage with Sylius Resource package*

{% code title="src/Entity/Speaker.php" lineNumbers="true" %}

```php
namespace App\Entity;

use Sylius\Resource\Metadata\AsResource;
use Sylius\Resource\Model\ResourceInterface;

#[AsResource(
    templatesDir: '@SyliusAdminUi/crud',
)]
class Speaker implements ResourceInterface
{
    // ...
}

```

{% endcode %}

### Dashboard

* dashboard/index.html.twig

### Login

* security/login.html.twig


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://stack.sylius.com/admin-ui/getting-started.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
