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

Faction types

Faction types are effectively categories for factions - but mostly for organization and display.

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

@if (!count($types))

No faction 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/faction-types/sort']) !!} {!! Form::hidden('sort', '', ['id' => 'sortableOrder']) !!} {!! Form::submit('Save Order', ['class' => 'btn btn-primary']) !!} {!! Form::close() !!}
@endif @endsection @section('scripts') @parent @endsection