Files
cv-roberto/resources/views/educations/create.blade.php
Roberto Guagliardo b324c030f4 Initial commit
2025-06-19 02:02:04 +02:00

11 lines
464 B
PHP

<x-app-layout>
<div class="p-6">
<h2 class="text-2xl font-semibold text-gray-800 dark:text-white mb-4">Nieuwe Opleiding</h2>
<form method="POST" action="{{ route('educations.store') }}" enctype="multipart/form-data">
@csrf
@include('educations._form')
<button type="submit" class="mt-4 px-4 py-2 bg-green-600 text-white rounded hover:bg-green-700">Opslaan</button>
</form>
</div>
</x-app-layout>