{!! Form::label('client_reference','Kundennummer',['class' => 'col-3 col-form-label']) !!}
{!! Form::text('client_reference',null,['class' => 'form-control']) !!}
{!! Form::label('name','Name',['class' => 'col-3 col-form-label']) !!}
{!! Form::text('name',null,['class' => 'form-control','required']) !!}
{!! Form::label('search_name','Name auf Rechnung',['class' => 'col-3 col-form-label']) !!}
{!! Form::text('search_name',null,['class' => 'form-control']) !!}
{!! Form::label('base_price','Grundpreis pro Bild',['class' => 'col-3 col-form-label']) !!}
{!! Form::number('base_price',null,['class' => 'form-control','step' => 0.01]) !!}
Länderrechte
@foreach (config('images.legal_countries') as $label => $country)
{!! Form::checkbox('legal_countries[]',$label,in_array($label,$legal_countries),['class' => 'form-check-input','id' => 'country-'.$label]) !!} {!! Form::label('country-'.$label,$country,['class' => 'form-check-label']) !!}
@endforeach
{!! Form::label('receive_newsletter','Newslettervesand',['class' => 'col-3 col-form-label']) !!}
{!! Form::hidden('receive_newsletter',0) !!} {!! Form::checkbox('receive_newsletter','1',null,['class' => 'form-check-input']) !!}
{!! Form::label('contact_id','Kontakte',['class' => 'col-3 col-form-label']) !!}
{!! Form::select('contact_id[]',$contacts->pluck('name','id')->all(),$client->contacts->pluck('id')->toArray(),['class' => 'form-control','multiple','size' => 5]) !!} Mit Strg können mehrere Einträge gewählt werden.
{!! Form::label('ftp_account_id','FTP Accounts',['class' => 'col-3 col-form-label']) !!}
{!! Form::select('ftp_account_id[]',$ftps->pluck('name','id')->all(),$client->ftp_accounts->pluck('id')->toArray(),['class' => 'form-control','multiple','size' => 5]) !!} Mit Strg können mehrere Einträge gewählt werden.