Some checks failed
Build & Push Monica Image to Gitea Registry / build-and-push (push) Failing after 9s
45 lines
2.0 KiB
PHP
45 lines
2.0 KiB
PHP
<form method="POST" action="{{ $action }}">
|
|
@method($method)
|
|
@csrf
|
|
|
|
@include('partials.errors')
|
|
|
|
<h2>{{ trans('people.debt_add_title') }}</h2>
|
|
|
|
{{-- Debt direction --}}
|
|
<fieldset class="form-group">
|
|
<label class="form-check-inline" for="youowe">
|
|
<input type="radio" class="form-check-input" name="in_debt" id="youowe" value="yes" @if(old('in_debt') !== 'no' || $debt->in_debt !== 'no') checked @endif>
|
|
{{ trans('people.debt_add_you_owe', ['name' => $contact->first_name]) }}
|
|
</label>
|
|
|
|
<label class="form-check-inline" for="theyowe">
|
|
<input type="radio" class="form-check-input" name="in_debt" id="theyowe" value="no" @if(old('in_debt') === 'no' || $debt->in_debt === 'no') checked @endif>
|
|
{{ trans('people.debt_add_they_owe', ['name' => $contact->first_name]) }}
|
|
</label>
|
|
</fieldset>
|
|
|
|
{{-- Amount --}}
|
|
<div class="form-group">
|
|
<label for="amount">{{ trans('people.debt_add_amount') }} ({{ Auth::user()->currency->symbol }})</label>
|
|
<input type="number" step=".01" class="form-control" name="amount" id="amount" maxlength="254" value="{{ old('amount') ?? $debt->amount }}" autofocus required>
|
|
</div>
|
|
|
|
{{-- Reason --}}
|
|
<div class="form-group">
|
|
<label for="reason">{{ trans('people.debt_add_reason') }}</label>
|
|
<textarea class="form-control" name="reason" id="reason" maxlength="2500">{{ old('reason') ?? $debt->reason }}</textarea>
|
|
</div>
|
|
|
|
<div class="form-group actions">
|
|
<button type="submit" cy-name="save-debt-button" class="btn btn-primary">
|
|
@if($update_or_add == 'add')
|
|
{{ trans('people.debt_add_add_cta') }}
|
|
@elseif ($update_or_add == 'edit')
|
|
{{ trans('people.debt_edit_update_cta') }}
|
|
@endif
|
|
</button>
|
|
<a href="{{ route('people.show', $contact) }}" class="btn btn-secondary">{{ trans('app.cancel') }}</a>
|
|
</div> <!-- .form-group -->
|
|
</form>
|