@extends('layouts.app') @section('title', 'Settings') @section('page-title', 'Settings') @section('content')
{{-- Modules --}}

Module Management

Enable or disable features for your workspace.

@csrf
@foreach($modules as $key => $config)

{{ $config['name'] }}

{{ $config['description'] }}

Phase {{ $config['phase'] }}
@endforeach
{{-- Right column --}}
{{-- Update Password --}}

Change Password

@csrf
@error('current_password')

{{ $message }}

@enderror
@error('password')

{{ $message }}

@enderror
{{-- Workspace info --}}

Workspace Info

Plan{{ auth()->user()->tenant->plan }}
Status{{ auth()->user()->tenant->status }}
Trial Ends{{ auth()->user()->tenant->trial_ends_at?->format('d M Y') ?? '—' }}
ERP Version{{ config('erp.version') }}
@endsection