mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2024-12-02 13:39:19 -06:00
65 lines
2.2 KiB
PHP
65 lines
2.2 KiB
PHP
@extends('layouts.default')
|
|
@section('content')
|
|
{!! Breadcrumbs::renderIfExists(Route::getCurrentRoute()->getName(), $bill) !!}
|
|
{!! Form::model($bill, ['class' => 'form-horizontal','id' => 'update','url' => route('bills.update', $bill->id)]) !!}
|
|
|
|
<input type="hidden" name="id" value="{{$bill->id}}" />
|
|
|
|
<div class="row">
|
|
<div class="col-lg-6 col-md-12 col-sm-6">
|
|
<!-- panel for mandatory fields -->
|
|
<div class="panel panel-primary">
|
|
<div class="panel-heading">
|
|
<i class="fa fa-exclamation-circle"></i> Mandatory fields
|
|
</div>
|
|
<div class="panel-body">
|
|
{!! ExpandedForm::text('name') !!}
|
|
{!! ExpandedForm::tags('match') !!}
|
|
{!! ExpandedForm::amount('amount_min') !!}
|
|
{!! ExpandedForm::amount('amount_max') !!}
|
|
{!! ExpandedForm::date('date',$bill->date->format('Y-m-d')) !!}
|
|
{!! ExpandedForm::select('repeat_freq',$periods) !!}
|
|
</div>
|
|
</div>
|
|
|
|
<p>
|
|
<button type="submit" class="btn btn-lg btn-success">
|
|
<i class="fa fa-plus-circle"></i> Update bill
|
|
</button>
|
|
</p>
|
|
</div>
|
|
<div class="col-lg-6 col-md-12 col-sm-6">
|
|
<!-- panel for optional fields -->
|
|
<div class="panel panel-default">
|
|
<div class="panel-heading">
|
|
<i class="fa fa-smile-o"></i> Optional fields
|
|
</div>
|
|
<div class="panel-body">
|
|
{!! ExpandedForm::integer('skip') !!}
|
|
{!! ExpandedForm::checkbox('automatch',1) !!}
|
|
{!! ExpandedForm::checkbox('active',1) !!}
|
|
|
|
</div>
|
|
</div>
|
|
<div class="panel panel-default">
|
|
<div class="panel-heading">
|
|
<i class="fa fa-bolt"></i> Options
|
|
</div>
|
|
<div class="panel-body">
|
|
{!! ExpandedForm::optionsList('update','bill') !!}
|
|
</div>
|
|
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{!! Form::close() !!}
|
|
|
|
|
|
@stop
|
|
@section('styles')
|
|
<link href="css/bootstrap-tagsinput.css" type="text/css" rel="stylesheet" media="all">
|
|
@stop
|
|
@section('scripts')
|
|
<script type="text/javascript" src="js/bootstrap-tagsinput.min.js"></script>
|
|
@stop
|