2015-05-21 16:05:31 -05:00
|
|
|
<div class="modal-dialog">
|
|
|
|
<div class="modal-content">
|
|
|
|
<div class="modal-header">
|
2015-06-27 01:06:24 -05:00
|
|
|
<button type="button" class="close" data-dismiss="modal"><span aria-hidden="true">×</span><span class="sr-only">{{ 'close'|_ }}</span>
|
|
|
|
</button>
|
|
|
|
<h4 class="modal-title" id="myModalLabel">Update (expected) available amount for {{ Session.get('start').format('F Y') }}</h4>
|
2015-05-21 16:05:31 -05:00
|
|
|
</div>
|
2015-05-31 13:23:49 -05:00
|
|
|
|
2015-06-29 05:34:31 -05:00
|
|
|
<form style="display: inline;" id="income" action="/budgets/income" method="POST">
|
2015-05-02 02:06:07 -05:00
|
|
|
<div class="modal-body">
|
2015-06-27 01:06:24 -05:00
|
|
|
<input type="hidden" name="_token" value="{{ csrf_token() }}"/>
|
|
|
|
|
2015-05-02 02:06:07 -05:00
|
|
|
<div class="input-group">
|
2015-05-31 13:23:49 -05:00
|
|
|
<div class="input-group-addon">{{ getCurrencySymbol()|raw }}</div>
|
2015-06-27 01:06:24 -05:00
|
|
|
<input step="any" class="form-control" id="amount" value="{{ amount.data }}" autocomplete="off" name="amount" type="number"/>
|
2015-05-02 02:06:07 -05:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="modal-footer">
|
2015-05-14 03:26:15 -05:00
|
|
|
<button type="button" class="btn btn-default" data-dismiss="modal">{{ 'close'|_ }}</button>
|
2015-05-31 13:23:49 -05:00
|
|
|
<button type="submit" class="btn btn-primary">{{ 'update_amount'|_ }}</button>
|
2015-05-02 02:06:07 -05:00
|
|
|
</div>
|
2015-05-21 16:05:31 -05:00
|
|
|
</form>
|
2015-05-02 02:06:07 -05:00
|
|
|
</div>
|
2015-05-23 01:51:24 -05:00
|
|
|
</div>
|
2015-05-31 13:23:49 -05:00
|
|
|
|