{{ Former::legend('Organization') }} {{ Former::text('name') }} {{ Former::text('work_phone')->label('Phone') }} {{ Former::textarea('notes') }} {{ Former::legend('Address') }} {{ Former::text('address1')->label('Street') }} {{ Former::text('address2')->label('Apt/Floor') }} {{ Former::text('city') }} {{ Former::text('state') }} {{ Former::text('postal_code') }} {{ Former::select('country_id')->addOption('','')->label('Country') ->fromQuery($countries, 'name', 'id') }}
{{ Former::legend('Contacts') }}
{{ Former::hidden('public_id')->data_bind("value: public_id, valueUpdate: 'afterkeydown'") }} {{ Former::text('first_name')->data_bind("value: first_name, valueUpdate: 'afterkeydown'") }} {{ Former::text('last_name')->data_bind("value: last_name, valueUpdate: 'afterkeydown'") }} {{ Former::text('email')->data_bind("value: email, valueUpdate: 'afterkeydown'") }} {{ Former::text('phone')->data_bind("value: phone, valueUpdate: 'afterkeydown'") }}
{{ link_to('#', 'Remove contact', array('data-bind'=>'click: $parent.removeContact')) }} {{ link_to('#', 'Add contact', array('onclick'=>'return addContact()')) }}
{{ Former::hidden('data')->data_bind("value: ko.toJSON(model)") }}