Component guide
<div class="govuk-form-group"> <fieldset class="govuk-fieldset"> <legend class="govuk-fieldset__legend govuk-fieldset__legend--l"> <h1 class="govuk-fieldset__heading"> Where do you live? </h1> </legend> <div class="govuk-radios" data-module="govuk-radios"> <div class="govuk-radios__item"> <input class="govuk-radios__input" id="whereDoYouLive" name="whereDoYouLive" type="radio" value="england"> <label class="govuk-label govuk-radios__label" for="whereDoYouLive"> England </label> </div> <div class="govuk-radios__item"> <input class="govuk-radios__input" id="whereDoYouLive-2" name="whereDoYouLive" type="radio" value="scotland"> <label class="govuk-label govuk-radios__label" for="whereDoYouLive-2"> Scotland </label> </div> <div class="govuk-radios__item"> <input class="govuk-radios__input" id="whereDoYouLive-3" name="whereDoYouLive" type="radio" value="wales"> <label class="govuk-label govuk-radios__label" for="whereDoYouLive-3"> Wales </label> </div> <div class="govuk-radios__item"> <input class="govuk-radios__input" id="whereDoYouLive-4" name="whereDoYouLive" type="radio" value="northern-ireland"> <label class="govuk-label govuk-radios__label" for="whereDoYouLive-4"> Northern Ireland </label> </div> </div> </fieldset> </div>
{{ govukRadios({ "name": "whereDoYouLive", "fieldset": { "legend": { "text": "Where do you live?", "isPageHeading": true, "classes": "govuk-fieldset__legend--l" } }, "items": [ { "value": "england", "text": "England" }, { "value": "scotland", "text": "Scotland" }, { "value": "wales", "text": "Wales" }, { "value": "northern-ireland", "text": "Northern Ireland" } ] }) }}