@extends('layouts.admin') @section('content')

Manage Report Types

These are the types of reports your officers can fill out.

@can('report_type_manage') @endcan
@foreach ($types as $type)
@if (!$type->is_locked) @endif

{{ $type->title }}

@if ($type->is_locked) @else @endif
@if (!$type->is_locked)
@endif
@endforeach
@endsection