@extends('header') @section('content') {!! Former::open($url)->addClass('col-lg-10 col-lg-offset-1 warn-on-exit')->method($method)->rules(array( 'client_id' => 'required', 'amount' => 'required', )) !!} @if ($credit) {!! Former::populate($credit) !!}
{!! Former::text('public_id') !!}
@endif
@if ($credit) {!! Former::plaintext()->label('client')->value($client->present()->link) !!} @else {!! Former::select('client_id') ->label('client') ->addOption('', '') ->addGroupClass('client-select') !!} @endif {!! Former::text('amount') !!} @if ($credit) {!! Former::text('balance') !!} @endif {!! Former::text('credit_date') ->data_date_format(Session::get(SESSION_DATE_PICKER_FORMAT, DEFAULT_DATE_PICKER_FORMAT)) ->addGroupClass('credit_date') ->append('') !!} {!! Former::textarea('public_notes')->rows(4) !!} {!! Former::textarea('private_notes')->rows(4) !!}
@if(Auth::user()->canCreateOrEdit(ENTITY_CREDIT, $credit))
{!! Button::normal(trans('texts.cancel'))->large()->asLinkTo(HTMLUtils::previousUrl('/credits'))->appendIcon(Icon::create('remove-circle')) !!} {!! Button::success(trans('texts.save'))->submit()->large()->appendIcon(Icon::create('floppy-disk')) !!}
@endif {!! Former::close() !!} @stop