@extends('header') @section('onReady') $('input#name').focus(); @stop @section('content')
{{ Former::open($url)->addClass('col-md-12 warn-on-exit')->method($method)->rules(array( 'email' => 'email|required' )); }} @if ($client) {{ Former::populate($client) }} @endif
{{ Former::legend('organization') }} {{ Former::text('name')->data_bind("attr { placeholder: placeholderName }") }} {{ Former::text('website') }} {{ Former::text('work_phone') }} {{ Former::legend('address') }} {{ Former::text('address1') }} {{ Former::text('address2') }} {{ Former::text('city') }} {{ Former::text('state') }} {{ Former::text('postal_code') }} {{ Former::select('country_id')->addOption('','') ->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\', attr: {id:\'email\'+$index()}') }} {{ 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::legend('additional_info') }} {{ Former::select('payment_terms')->addOption('','') ->fromQuery($paymentTerms, 'name', 'num_days') }} {{ Former::select('currency_id')->addOption('','') ->fromQuery($currencies, 'name', 'id') }} {{ Former::select('size_id')->addOption('','') ->fromQuery($sizes, 'name', 'id') }} {{ Former::select('industry_id')->addOption('','') ->fromQuery($industries, 'name', 'id') }} {{ Former::textarea('private_notes') }}
{{ Former::hidden('data')->data_bind("value: ko.toJSON(model)") }}
{{ Button::lg_primary_submit_success('Save')->append_with_icon('floppy-disk') }} {{ Button::lg_default_link('clients/' . ($client ? $client->public_id : ''), 'Cancel')->append_with_icon('remove-circle'); }}
{{ Former::close() }}
@stop