<div class="panel panel-default">
    <div class="panel-heading"><?= $this->translate('Coins') ?></div>
    <div class="panel-body">
        <?php if ($this->user->getBackendId() < 1) : ?>
            <p><?= $this->translate('User has no backendId') ?></p>
        <?php else : ?>
            <p><?= $this->translate('Current Coins') ?> <?= $this->escapeHtml($this->userCoins) ?></p>
            <?php $this->coinForm->setAttribute('action', $this->url('PServerAdmin/user_coin', ['action' => 'add', 'usrId' => $this->user->getId()])) ?>
            <?= $this->formWidget($this->coinForm) ?>
        <?php endif; ?>
    </div>
</div>