{{ html()->form('POST', route('admin.clipart.store'))->attribute('enctype', 'multipart/form-data')->open() }}
{{ html()->label('Name')->for('name') }} {{ html()->text('name') ->class('form-control') ->placeholder('name') ->attribute('maxlength', 191) ->required()}}
{{ html()->label('Description')->for('description') }} {{ html()->textarea('description') ->class('form-control') ->placeholder('description') }}
{{ html()->label('Tags')->for('tags[]') }} {{ html()->select('tags[]') ->class('form-control') ->attribute('multiple', 'multiple') ->options($tags->pluck('text', 'id')) }}
{{ html()->label( html()->checkbox('public') ->class('switch-input') ->id('public') . '') ->class('switch switch-label switch-pill switch-primary mr-2') ->for('public') ->attribute('checked')}} {{ html()->label('Public')->for('public') }}
{{ html()->label('Baseline')->for('baseline')->attribute('style', 'font-weight:bold') }} {{ html()->file('baseline')->class('form-control') }}
{{ html()->label('Blue')->for('blue')->attribute('style', 'color:blue; font-weight:bold') }} {{ html()->file('blue')->class('form-control') }}
{{ html()->label('Green')->for('green')->attribute('style', 'color:DarkGreen; font-weight:bold') }} {{ html()->file('green')->class('form-control') }}
{{ html()->label('Grey')->for('grey')->attribute('style', 'color:DarkGray; font-weight:bold') }} {{ html()->file('grey')->class('form-control') }}
{{ html()->label('Purple')->for('purple')->attribute('style', 'color:DarkViolet; font-weight:bold') }} {{ html()->file('purple')->class('form-control') }}
{{ html()->label('Red')->for('red')->attribute('style', 'color:DarkRed; font-weight:bold') }} {{ html()->file('red')->class('form-control') }}
{{ html()->label('Yellow')->for('yellow')->attribute('style', 'color:Gold; font-weight:bold') }} {{ html()->file('yellow')->class('form-control') }}
{{ html()->label('Outline')->for('outline')->attribute('style', ' color: black; -webkit-text-fill-color: white; -webkit-text-stroke-width: 1px; -webkit-text-stroke-color: black;') }} {{ html()->file('outline')->class('form-control') }}
{!!form_submit('Create','btn-block btn btn-success ') !!}
{{ html()->form()->close()}}