@extends('layouts.app') @section('title', 'Create Category - Cash Book') @section('content')

Create Category

@if($errors->any())
    @foreach($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@csrf
@if(auth()->user()->role !== 'super_admin')

You cannot create sub-categories under global categories

@endif
@if(in_array(auth()->user()->role, ['super_admin', 'co_admin'])) @else @endif
Cancel
@endsection