@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( 'amount' => 'required' )); }} @if ($payment) {{-- Former::populate($payment) --}} @endif
@if ($payment) {{ Former::legend('Edit Payment') }} @else {{ Former::legend('New Payment') }} @endif {{ Former::select('client')->addOption('', '')->addGroupClass('client-select') }} {{ Former::select('invoice')->addOption('', '')->addGroupClass('invoice-select') }} {{ Former::text('amount') }} {{ Former::text('payment_date') }}
{{ Button::lg_primary_submit('Save') }}  |  {{ link_to('payments/' . ($payment ? $payment->public_id : ''), 'Cancel') }}
{{ Former::close() }} @stop