@extends('layouts.app') @section('title', 'Create Permission') @section('page-title', 'Create Permission') @section('content') Create a new system permission for controlling access to modules and actions. {{-- Page Actions --}}
Back
@csrf
{{-- Header --}}

Permission Information

Define a permission using the module and action naming convention.

{{-- Form --}}
{{-- Permission Name --}}

Use the module.action format, for example students.view or attendance-devices.edit .

@error('name')

{{ $message }}

@enderror
{{-- Naming Convention --}}

Permission Naming Convention

Permissions should follow a consistent module.action structure so they can be grouped and managed correctly.

students.view students.create students.edit students.delete
{{-- Common Actions --}}

Common Actions

View Create Edit Delete
{{-- Actions --}}
Cancel
@endsection