@extends('layouts.app') @section('title', 'VM bearbeiten') @section('heading', 'VM konfigurieren: '.$vm->name) @section('content')
@csrf @method('PUT')

Änderungen werden bei aktiver VM an Proxmox übertragen.

Zusätzliche Geräte

@php $devices = old('devices', $vm->devices->map(fn($d) => ['type'=>$d->type,'slot'=>$d->slot,'config'=>$d->config])->all()); @endphp @include('partials.vm-device-fields', ['deviceTypes' => $deviceTypes, 'devices' => $devices])
@endsection