{{!
    This file is part of Moodle - http://moodle.org/

    Moodle is free software: you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
    the Free Software Foundation, either version 3 of the License, or
    (at your option) any later version.

    Moodle is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    GNU General Public License for more details.

    You should have received a copy of the GNU General Public License
    along with Moodle.  If not, see <http://www.gnu.org/licenses/>.

    Edwiser RemUI
    @package theme_remui
    @copyright (c) 2023 WisdmLabs (https://wisdmlabs.com/)
    @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
}}
<div class="form-group row {{#error}}has-danger{{/error}} fitem {{#advanced}}advanced{{/advanced}} {{{element.extraclasses}}}">
    <div class="col-lg-3 col-md-4 col-form-label pb-0 pt-0">
        {{#text}}
            <label class="edw-form-label d-inline word-break m-0" for="{{element.id}}">
                {{{label}}}
            </label>
        {{/text}}
    </div>
    <div class="col-lg-9 col-md-8 checkbox p-0">
        <div class="form-check d-flex align-items-center p-0">
            {{^element.hardfrozen}}
                {{#element.frozen}}
                    <input type="hidden" name="{{element.name}}" value="{{element.frozenvalue}}">
                {{/element.frozen}}
            {{/element.hardfrozen}}
            <input type="checkbox"
                name="{{element.name}}"
                class="form-check-input {{element.extraclasses}}"
                {{#element.value}}
                    value="{{element.value}}"
                {{/element.value}}
                {{^element.value}}
                    value="1"
                {{/element.value}}
                id="{{element.id}}" {{#element.checked}}checked{{/element.checked}}
                {{#error}}
                    autofocus aria-describedby="{{#text}}{{element.id}}_description {{/text}}{{element.iderror}}"
                {{/error}}
                {{^error}}
                    {{#text}}
                        aria-describedby="{{element.id}}_description"
                    {{/text}}
                {{/error}}
                {{#element.frozen}}
                    disabled
                {{/element.frozen}}
                {{{element.attributes}}} >
            {{#text}}
                <span id="{{element.id}}_description">
                    {{{.}}}
                </span>
            {{/text}}
            {{^text}}
                <label for="{{element.id}}" class="mb-0 ml-2 text-paragraph">
                    {{{label}}}
                </label>
            {{/text}}
            <div class="ml-2 d-flex align-items-center align-self-start">
                {{#required}}
                    <div class="text-danger" title="{{#str}}required{{/str}}">
                    {{#pix}}req, core, {{#str}}required{{/str}}{{/pix}}
                    </div>
                {{/required}}
                {{{helpbutton}}}
            </div>
        </div>
        <div class="form-control-feedback invalid-feedback" id="{{element.iderror}}" {{#error}} style="display: block;"{{/error}}>
            {{{error}}}
        </div>
    </div>
</div>
{{^element.frozen}}

{{#js}}
require(['theme_boost/form-display-errors'], function(module) {
    module.enhance({{#quote}}{{element.id}}{{/quote}});
});
{{/js}}
{{/element.frozen}}
