mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-10 13:12:50 +01:00
Fix client label on credit form
This commit is contained in:
parent
4a3529b523
commit
f71585cb11
@ -24,7 +24,10 @@
|
||||
@if ($credit)
|
||||
{!! Former::plaintext()->label('client')->value($client->present()->link) !!}
|
||||
@else
|
||||
{!! Former::select('client_id')->addOption('', '')->addGroupClass('client-select') !!}
|
||||
{!! Former::select('client_id')
|
||||
->label('client')
|
||||
->addOption('', '')
|
||||
->addGroupClass('client-select') !!}
|
||||
@endif
|
||||
|
||||
{!! Former::text('amount') !!}
|
||||
|
Loading…
Reference in New Issue
Block a user