@extends('layouts.main') @section('title', 'Edit Workspace: ' . $workspace->name) @section('content')
{{ strtoupper(substr($workspace->name, 0, 1)) }}

Edit Workspace

Update workspace information
Cancel
@csrf @method('PUT')
@error('name')
{{ $message }}
@enderror
@error('description')
{{ $message }}
@enderror
Provide a brief description of what this workspace is used for.
Note: Updating this workspace will affect all associated data pipelines and configurations.
Workspace Statistics
Workspace Items {{ $workspace->workspaceItems->count() }}
Active Items {{ $workspace->workspaceItems->count() }}
Inactive Items 0
@endsection @section('scripts') @endsection