Menu

Basic Demo

{{ Aire::open() }}
	
{{ Aire::input()
	->label('Demo Input')
	->id('demo')
	->helpText('This is demo help text.') }}

{{ Aire::select(['one' => 'Option 1', 'two' => 'Option 2'])
    ->label('Demo Select') }}
			
{{ Aire::timezoneSelect('timezone', 'Timezone') }}

{{ Aire::textarea()
	->value('Demo text area') }}

{{ Aire::checkbox()
	->label('Demo check box') }}

// Radio groups must have a name
{{ Aire::radioGroup(['one' => 'Option 1', 'two' => 'Option 2'], 'demo_radios')
	->defaultValue('two')
	->label('Demo radio group') }}

{{ Aire::submit('Demo Submit Button') }}

{{ Aire::close() }}

Resulting Form

This is demo help text.