mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-02-25 18:45:27 -06:00
Expanded to credit cards.
This commit is contained in:
@@ -2,6 +2,7 @@
|
||||
<label for="{{{$options['id']}}}" class="col-sm-4 control-label">{{{$label}}}</label>
|
||||
<div class="col-sm-8">
|
||||
{!! Form::input('date', $name, $value, $options) !!}
|
||||
@include('form.help')
|
||||
@include('form.feedback')
|
||||
</div>
|
||||
</div>
|
||||
|
||||
3
resources/views/form/help.blade.php
Normal file
3
resources/views/form/help.blade.php
Normal file
@@ -0,0 +1,3 @@
|
||||
@if(isset($options['helpText']))
|
||||
<p class="help-block">{{$options['helpText']}}</p>
|
||||
@endif
|
||||
8
resources/views/form/month.blade.php
Normal file
8
resources/views/form/month.blade.php
Normal file
@@ -0,0 +1,8 @@
|
||||
<div class="{{{$classes}}}">
|
||||
<label for="{{{$options['id']}}}" class="col-sm-4 control-label">{{{$label}}}</label>
|
||||
<div class="col-sm-8">
|
||||
{!! Form::input('month', $name, $value, $options) !!}
|
||||
@include('form.help')
|
||||
@include('form.feedback')
|
||||
</div>
|
||||
</div>
|
||||
@@ -2,9 +2,7 @@
|
||||
<label for="{{{$options['id']}}}" class="col-sm-4 control-label">{{{$label}}}</label>
|
||||
<div class="col-sm-8">
|
||||
{!! Form::select($name, $list, $selected , $options ) !!}
|
||||
@if(isset($options['helpText']))
|
||||
<p class="help-block">{{$options['helpText']}}</p>
|
||||
@endif
|
||||
@include('form.help')
|
||||
@include('form.feedback')
|
||||
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user