Anpassung

This commit is contained in:
Marco Glietsch 2022-08-18 22:43:08 +02:00
parent 954f632c2a
commit 9920bf5aec
5 changed files with 36 additions and 2 deletions

View File

@ -188,7 +188,7 @@ class ContactController extends ExtendedController
$view = view("inc.contact.subscribeVaccinate");
$view->with('url', $this->route);
$view->with('formdata', $formdata);
$view->with('expired', true);
$view->with('expired', false);
return $view;
}

View File

@ -15,6 +15,7 @@ use App\Http\Controllers\ServiceController;
class SubscribeYouthFireFighter extends ExtendedModel
{
protected $table = 'subscribe_youth_fire_fighter';
protected $fillable = [
'lastnameParent',
'firstnameParent',

View File

@ -1,4 +1,5 @@
<?php
ob_start();
ini_set('display_errors', 'On');
error_reporting(E_ALL);

View File

@ -51,7 +51,7 @@
<div class="row">
<div class="col-lg-12 card-content">
<form action="{{ config('app.url') . '/anmeldung-kinderfeuerwehr/abschliessen' }}" method="POST">
<input type="hidden" value="{{ csrf_token() }}" name="_token" />
{{ csrf_field() }}
@include('inc.forms.inputText', [
'name' => 'lastnameParent',
'label' => 'Nachname des/der Erziehungsberechtigten *',

View File

@ -0,0 +1,32 @@
@extends('layouts.app')
@section('social_media')
<meta property="fb:app_id" content="{{ config('social-media-manager.facebook.app_id') }}"/>
<meta property="og:type" content="website"/>
@endsection
@section('content')
<article class="post-item card pt-3 pb-3 mb-lg-5 shadow-sm">
<div class="row">
<h1 class="col-lg-12 card-title">
Anmeldebestätigung
</h1>
</div>
<div class="row">
<div class="col-lg-12">
<hr>
</div>
</div>
<div class="row">
<div class="col">
Die Anmeldung zur Kinderfeuerwehr wurde erfolgreich abgeschlossen.<br/>
Wir melden uns demnächst mit weiteren Informationen.
<br/>
Eure Feuerwehr Eppingen
<br/>
<br/>
</div>
</div>
</article>
@endsection