x
1
2
3
4
5
<!-- Default -->
<label class="block mb-2.5 text-sm font-medium text-heading" for="person_first_name">First name</label>
<!-- With Content -->
<label class="block mb-2.5 text-sm font-medium text-heading" for="person_first_name">This is not the default label</label>
1
2
3
4
5
# Default
render(Flowbite::Input::Label.new(attribute: :first_name, form: form))
# With Content
render(Flowbite::Input::Label.new(attribute: :first_name, form: form).with_content("This is not the default label"))