mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2026-07-02 04:25:11 -07:00
26 lines
985 B
PHP
26 lines
985 B
PHP
@if('create' === $type)
|
|
<div class="row mb-3" id="{{ $name }}_holder">
|
|
<div class="col-sm-9 offset-sm-3">
|
|
<div class="form-check has-validation">
|
|
{{ Html::checkbox('create_another')->class('form-check-input')->id($name . '_return_to_form') }}
|
|
<label class="form-check-label" for="{{ $name }}">
|
|
{{ trans('form.returnHereExplanation') }}
|
|
</label>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
@endif
|
|
@if('update' === $type)
|
|
<div class="row mb-3" id="{{ $name }}_holder">
|
|
<div class="col-sm-9 offset-sm-3">
|
|
<div class="form-check has-validation">
|
|
{{ Html::checkbox('create_another')->class('form-check-input')->id($name . '_return_to_edit') }}
|
|
<label class="form-check-label" for="{{ $name }}">
|
|
{{ trans('form.returnHereUpdateExplanation') }}
|
|
</label>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
@endif
|
|
|