@extends('header') @section('onReady') $('input#name').focus(); @stop @section('content') {{ Former::open($url)->addClass('col-md-10 col-md-offset-1 main_form')->method($method)->rules(array( 'client' => 'required', 'amount' => 'required', )); }} @if ($credit) {{ Former::populate($credit) }} @endif
@if ($credit) {{ Former::legend('Edit Credit') }} @else {{ Former::legend('New Credit') }} @endif {{ Former::select('client')->fromQuery($clients, 'name', 'public_id')->select($client ? $client->public_id : '')->addOption('', '')->addGroupClass('client-select') }} {{ Former::text('amount') }} {{ Former::text('credit_date')->data_date_format(DEFAULT_DATE_PICKER_FORMAT) }}
{{ Button::lg_primary_submit('Save') }}  |  {{ link_to('credits/' . ($credit ? $credit->public_id : ''), 'Cancel') }}
{{ Former::close() }} @stop