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

Create New Department

Add a new department to your organization

@if(session('error')) @endif
@csrf
Basic Information
@if($isps->count() > 0) @if($isps->count() == 1) @php $isp = $isps->first(); @endphp
{{ $isp->name }} ({{ $isp->code }})
@else @endif @else
No ISP/Branch assigned to your account. Please contact administrator.
@endif @error('isp_id')
{{ $message }}
@enderror Select the ISP this department belongs to (Required)
@error('name')
{{ $message }}
@enderror
Auto-generated based on department name
Code will be automatically created when you save the department
@error('description')
{{ $message }}
@enderror
Department Head Information
@error('head_name')
{{ $message }}
@enderror
@error('head_email')
{{ $message }}
@enderror
@error('head_phone')
{{ $message }}
@enderror
Status
Uncheck to create an inactive department
Cancel
@endsection