@extends('layouts/layoutMaster') @section('title', 'Create Permission') @section('content')
@csrf

Create Permission

Permission Information
@if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@error('name')
{{ $message }}
@enderror
@endsection