{!! Form::label('name', 'Name *') !!} {!! Form::text('name', null, ['class'=>'form-control']) !!}
{!! Form::label('is_active', 'Active?') !!} {!! Form::select('is_active', [1 => 'Active', 0 => 'Inactive'], null, ['class'=>'form-control']) !!}
{!! Form::label('description', 'Description') !!} {!! Form::textarea('description', null, ['class'=>'form-control', 'rows'=>$rows]) !!}
@include('backend._includes.image_form', ['image_resource_path' => $icon_resource_path, 'name' => 'icon', 'label' => 'Icon', 'preview_id' => 'icon_preview'])

This will be the icon for all markers within this category (but this can be overridden at the marker level).

@if(isset($category) && isset($icon_resource_path))

To remove this image, click {{ link_to(route('backend.categories.show', $category->id) . '#icon', 'here') }}

@endif
@include('backend._includes.notes')