{!! Form::text('title', $banner->title, ['class' => 'form-control']) !!} The title must be a simple description of the banner
{{-- end form-group --}}
{!! Form::select('size', ['small' => 'Small ' . getSizeStr('small'), 'large' => 'Large ' . getSizeStr('large')], $banner->size, ['id' => 'size', 'class' => 'form-control']) !!}
{{-- end form-group --}}
{!! Form::text('link', $banner->link, ['placeholder' => "http://google.com", 'class' => 'form-control']) !!}
{{-- end form-group --}}
{!! Form::text('border_color', $banner->border_color, ['id' => 'border_color', 'class' => 'form-control colorpicker', 'placeholder' => "color: #333333"]) !!}
{!! Form::text('border_radius', $banner->border_radius, ['id' => 'border_radius', 'class' => 'form-control', 'placeholder' => "radius: 5"]) !!}
{{-- end form-group --}}
{!! Form::select('is_active', [1 => 'active', 0 => 'not active'], $banner->is_active, ['id' => 'size', 'class' => 'form-control']) !!}
{{-- end form-group --}} @if(isAdmin())
{!! Form::checkbox('show_on_home_page', true, $banner->show_on_home_page, ['id' => 'show_on_home_page']) !!} Show banner on home page
@endif