2014-07-28 07:53:04 -05:00
|
|
|
@extends('layouts.default')
|
|
|
|
@section('content')
|
2014-11-28 08:52:52 -06:00
|
|
|
{{ Breadcrumbs::renderIfExists(Route::getCurrentRoute()->getName(), $budget) }}
|
2014-07-28 07:53:04 -05:00
|
|
|
<div class="row">
|
|
|
|
<div class="col-lg-12 col-md-12 col-sm-12">
|
|
|
|
<p class="lead">Use budgets to organize and limit your expenses.</p>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
2014-12-16 14:41:16 -06:00
|
|
|
{{Form::model($budget, ['class' => 'form-horizontal','id' => 'update','url' => route('budgets.update',$budget->id)])}}
|
2014-07-28 07:53:04 -05:00
|
|
|
<div class="row">
|
|
|
|
<div class="col-lg-6 col-md-12 col-sm-6">
|
2014-11-05 12:57:56 -06:00
|
|
|
<div class="panel panel-primary">
|
|
|
|
<div class="panel-heading">
|
|
|
|
<i class="fa fa-fw fa-exclamation"></i> Mandatory fields
|
|
|
|
</div>
|
|
|
|
<div class="panel-body">
|
|
|
|
{{Form::ffText('name')}}
|
2014-07-28 07:53:04 -05:00
|
|
|
</div>
|
|
|
|
</div>
|
2014-11-05 12:57:56 -06:00
|
|
|
<p>
|
|
|
|
<button type="submit" class="btn btn-lg btn-success">
|
|
|
|
<i class="fa fa-pencil"></i> Update budget
|
|
|
|
</button>
|
|
|
|
</p>
|
2014-07-28 07:53:04 -05:00
|
|
|
</div>
|
|
|
|
<div class="col-lg-6 col-md-12 col-sm-6">
|
2014-11-05 12:57:56 -06:00
|
|
|
<!-- panel for options -->
|
|
|
|
<div class="panel panel-default">
|
|
|
|
<div class="panel-heading">
|
|
|
|
<i class="fa fa-bolt"></i> Options
|
|
|
|
</div>
|
|
|
|
<div class="panel-body">
|
|
|
|
{{Form::ffOptionsList('update','budget')}}
|
2014-07-28 07:53:04 -05:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{{Form::close()}}
|
|
|
|
|
|
|
|
|
|
|
|
@stop
|