Enforce PHP and Blade formatting
All checks were successful
Tests / Laravel tests (pull_request) Successful in 12m39s

This commit is contained in:
2026-06-03 22:22:39 +02:00
parent aab8d33b8d
commit 886e3993fc
47 changed files with 946 additions and 283 deletions

View File

@@ -1,11 +1,12 @@
<x-app-layout>
<div class="p-6">
<h2 class="text-2xl font-semibold text-gray-800 dark:text-white mb-4">Persoonlijk item bewerken</h2>
<form method="POST" action="{{ route('personalia.update', ['personalium' =>$personalia]) }}">
<form method="POST" action="{{ route('personalia.update', ['personalium' => $personalia]) }}">
@csrf
@method('PUT')
@include('personalia._form')
<button type="submit" class="mt-4 px-4 py-2 bg-blue-600 text-white rounded hover:bg-blue-700">Bijwerken</button>
<button type="submit"
class="mt-4 px-4 py-2 bg-blue-600 text-white rounded hover:bg-blue-700">Bijwerken</button>
</form>
</div>
</x-app-layout>