@extends('layouts.app') @section('title', 'Permissions') @section('content')

User Permissions

Control who can submit RFIs, and who can add Safety and/or Quality issues.

+ Add User
@csrf
@foreach ($users as $user) @endforeach
User Admin Submit RFIs Add Safety Add Quality Delete
{{ $user->name }}
{{ $user->email }}
is_admin)> can_submit_rfi)> can_add_safety_issue)> can_add_quality_issue)> @if ($user->id === auth()->id()) @else @endif
Admins can manage everyone's permissions and implicitly have all of the above, regardless of the other checkboxes.
{{-- Kept outside the permissions form above — forms can't be nested, and delete is a separate action from the bulk permission save. --}} @endsection