Notizfeld und CSS

This commit is contained in:
2026-03-30 01:19:39 +02:00
parent 4c94066bf9
commit b34bfb0a47
8 changed files with 126 additions and 50 deletions

View File

@@ -96,6 +96,7 @@ class PreApplicationController extends Controller
$pa->first_name = $request->input('first_name');
$pa->last_name = $request->input('last_name');
$pa->location = $request->input('location');
$pa->notes = $request->input('notes');
$pa->passport_type = $request->input('passport_type');
$pa->event_id = $request->input('district_region');
$pa->email = $request->input('mail');
@@ -143,6 +144,7 @@ class PreApplicationController extends Controller
$pa->first_name = $request->input('first_name');
$pa->last_name = $request->input('last_name');
$pa->location = $request->input('location');
$pa->notes = $request->input('notes');
$pa->email = $request->input('mail');
$pa->passport_type = $request->input('passport_type');
$pa->save();