@extends('admin.layout') @section('admin-title') Location types @endsection @section('admin-content') {!! breadcrumbs(['Admin Panel' => 'admin', 'Location types' => 'admin/world/location-types']) !!}
Create New Location Type Back to Locations

Location types

Location types are effectively categories for locations - but mostly for organization and display. eg. Country, Continent, Island.

The sorting order reflects the order in which the types will be listed on the location type index.

@if (!count($types))

No location types found.

@else @foreach ($types as $type) @endforeach
url !!} @if ($type->thumb_extension) data-toggle="tooltip" title="
{{ ucfirst($type->name) }} " @endif />{!! $type->name !!}
({!! $type->names !!})
Edit
{!! Form::open(['url' => 'admin/world/location-types/sort']) !!} {!! Form::hidden('sort', '', ['id' => 'sortableOrder']) !!} {!! Form::submit('Save Order', ['class' => 'btn btn-primary']) !!} {!! Form::close() !!}
@endif @endsection @section('scripts') @parent @endsection