Skip to content
Snippets Groups Projects
Commit 5e78b253 authored by Phil Höfer's avatar Phil Höfer
Browse files

Adjust Membership Form

parent d8201233
No related branches found
No related tags found
1 merge request!2250Development
...@@ -32,7 +32,7 @@ ...@@ -32,7 +32,7 @@
</div> </div>
<div id="membership-fee"> <div id="membership-fee">
<h3>2. Ihr Mitgliedsbeitrag</h3> <h3>2. Ihr Mitgliedsbeitrag</h3>
<div>Wählen Sie nachfolgend bitte Ihren gewünschten monatlichen Mitgliedsbeitrag aus.</div> <div>Wählen Sie nachfolgend bitte Ihren gewünschten <em>monatlichen</em> Mitgliedsbeitrag aus.</div>
@if(isset($errors) && $errors->has("amount")) @if(isset($errors) && $errors->has("amount"))
@foreach($errors->get("amount") as $error) @foreach($errors->get("amount") as $error)
<div class="error">{{ $error }}</div> <div class="error">{{ $error }}</div>
...@@ -43,10 +43,6 @@ ...@@ -43,10 +43,6 @@
<div class="error">{{ $error }}</div> <div class="error">{{ $error }}</div>
@endforeach @endforeach
@endif @endif
<div class="input-group">
<input type="radio" name="amount" id="amount-5" value="5.00" @if(Request::input('amount', '') === "5.00")checked @endif required />
<label for="amount-5">5</label>
</div>
<div class="input-group"> <div class="input-group">
<input type="radio" name="amount" id="amount-10" value="10.00" @if(!Request::has('amount') || Request::input('amount') === "10.00")checked @endif required/> <input type="radio" name="amount" id="amount-10" value="10.00" @if(!Request::has('amount') || Request::input('amount') === "10.00")checked @endif required/>
<label for="amount-10">10</label> <label for="amount-10">10</label>
...@@ -55,6 +51,10 @@ ...@@ -55,6 +51,10 @@
<input type="radio" name="amount" id="amount-15" value="15.00" @if(Request::input('amount', '') === "15.00")checked @endif required /> <input type="radio" name="amount" id="amount-15" value="15.00" @if(Request::input('amount', '') === "15.00")checked @endif required />
<label for="amount-15">15</label> <label for="amount-15">15</label>
</div> </div>
<div class="input-group">
<input type="radio" name="amount" id="amount-20" value="20.00" @if(Request::input('amount', '') === "20.00")checked @endif required />
<label for="amount-20">20</label>
</div>
<div class="input-group custom"> <div class="input-group custom">
<input type="radio" name="amount" id="amount-custom" value="custom" @if(Request::input('amount', '') === "custom")checked @endif required /> <input type="radio" name="amount" id="amount-custom" value="custom" @if(Request::input('amount', '') === "custom")checked @endif required />
<label for="amount-custom">Wunschbetrag</label> <label for="amount-custom">Wunschbetrag</label>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment