Example #1
0
 public function addFields()
 {
     return [Field::text('First Name'), Field::text('Last Name'), Field::text('Phone'), Field::text('Address 1'), Field::text('Address 2'), Field::text('Address 3'), Field::text('City'), Field::select('State', ['NH' => 'NH']), Field::text('Zipcode', ['maxlength' => 5]), Field::checkBox('Derp'), Field::radioButton('Herp'), Field::hidden('Haha')];
 }