@extends('layouts/default')
{{-- Page title --}}
@section('title')
@if ($item->id)
{{ trans('admin/locations/table.update') }}
@else
{{ trans('admin/locations/table.create') }}
@endif
@parent
@stop
@push('js')
@endpush
{{-- Page content --}}
@section('content')
@if ($item->id)
{{ $item->name }}
@endif
@if ($snipeSettings->ldap_enabled == 1)
@endif
@stop