{!! Form::label('name', 'Nom Module', ['class' => 'font-weight-bold']) !!} {!! Form::text('name', null, array('class'=>'form-control', 'id'=>'name', 'placeholder'=>'Nom du Module ')) !!}
{!! Form::label('term', 'Module Term', ['class' => 'font-weight-bold']) !!} {!! Form::text('term', null, array('class'=>'form-control', 'id'=>'term', 'placeholder'=>'Module Term')) !!}
@php $fields = array( 0 => 'No', 1 => 'Yes', ); @endphp {!! Form::label('is_slug', 'Module Slug', ['class' => 'font-weight-bold']) !!} {!! Form::select('is_slug', $fields, null, array('class'=>'form-control', 'id'=>'is_slug')) !!}
{!! Form::label('is_menu', 'Module Menus', ['class' => 'font-weight-bold']) !!} {!! Form::select('is_menu', $fields, null, array('class'=>'form-control', 'id'=>'is_menu')) !!}
{!! Form::label('is_description', 'Module Description', ['class' => 'font-weight-bold']) !!} {!! Form::select('is_description', $fields, null, array('class'=>'form-control', 'id'=>'is_description')) !!}
{!! Form::label('is_seo', 'Module Seo', ['class' => 'font-weight-bold']) !!} {!! Form::select('is_seo', $fields, null, array('class'=>'form-control', 'id'=>'is_seo')) !!}
{!! Form::label('category', 'Module Category', ['class' => 'font-weight-bold']) !!} {!! Form::select('category', $fields, null, array('class'=>'form-control', 'id'=>'category')) !!}
{!! Form::label('parent_id', 'Module Category', ['class' => 'font-weight-bold']) !!} {!! Form::select('parent_id', [''=>'Select Category']+$categories, null, array('class'=>'form-control', 'id'=>'parent_id')) !!}
{!! Form::label('multiple_category', 'Multiple Categories', ['class' => 'font-weight-bold']) !!} {!! Form::select('multiple_category', $fields, null, array('class'=>'form-control', 'id'=>'multiple_category')) !!}
{!! Form::label('tags', 'Module Tags', ['class' => 'font-weight-bold']) !!} {!! Form::select('tags', $fields, null, array('class'=>'form-control', 'id'=>'tags')) !!}
{!! Form::label('is_image', 'Module Image', ['class' => 'font-weight-bold']) !!} {!! Form::select('is_image', $fields, null, array('class'=>'form-control', 'id'=>'is_image')) !!}
{!! Form::label('multi_images', 'Multi Images', ['class' => 'font-weight-bold']) !!} {!! Form::select('multi_images', $fields, null, array('class'=>'form-control', 'id'=>'multi_images')) !!}
{!! Form::label('thumbnail_height', 'Thumbnail Height', ['class' => 'font-weight-bold']) !!} {!! Form::text('thumbnail_height', null, array('class'=>'form-control', 'id'=>'thumbnail_height', 'placeholder'=>'Thumbnail Height')) !!}
{!! Form::label('thumbnail_width', 'Thumbnail Width', ['class' => 'font-weight-bold']) !!} {!! Form::text('thumbnail_width', null, array('class'=>'form-control', 'id'=>'thumbnail_width', 'placeholder'=>'Thumbnail Width')) !!}
@php $extra_fields = array( 1 => 1, 2 => 2, 3 => 3, 4 => 4, 5 => 5, 6 => 6, 7 => 7, 8 => 8, 9 => 9, 10 => 10, 11 => 11, 12 => 12, 13 => 13, 14 => 14, 15 => 15 ); @endphp {!! Form::label('extra_fields', 'Extra Fields', ['class' => 'font-weight-bold']) !!} {!! Form::select('extra_fields', [''=>'Select Extra Fields']+$extra_fields, null, array('class'=>'form-control', 'id'=>'extra_fields')) !!}
@push('js') @endpush