mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-01-07 06:33:57 -06:00
60 lines
2.0 KiB
PHP
60 lines
2.0 KiB
PHP
@extends('layouts.default')
|
|
@section('content')
|
|
{!! Breadcrumbs::renderIfExists(Route::getCurrentRoute()->getName()) !!}
|
|
{!! Form::open(['class' => 'form-horizontal','id' => 'store','url' => route('piggy-banks.store')]) !!}
|
|
|
|
<input type="hidden" name="repeats" value="0" />
|
|
|
|
<div class="row">
|
|
<div class="col-lg-6 col-md-12 col-sm-6">
|
|
<div class="panel panel-primary">
|
|
<div class="panel-heading">
|
|
<i class="fa fa-fw fa-exclamation"></i> Mandatory fields
|
|
</div>
|
|
<div class="panel-body">
|
|
|
|
{!! ExpandedForm::text('name') !!}
|
|
{!! ExpandedForm::select('account_id',$accounts,null,['label' => 'Save on account']) !!}
|
|
{!! ExpandedForm::amount('targetamount') !!}
|
|
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="col-lg-6 col-md-12 col-sm-12">
|
|
<!-- 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::date('targetdate') !!}
|
|
{!! ExpandedForm::checkbox('remind_me','1',false,['label' => 'Remind me']) !!}
|
|
{!! ExpandedForm::select('reminder',$periods,'month',['label' => 'Remind every']) !!}
|
|
</div>
|
|
</div>
|
|
|
|
<!-- panel for options -->
|
|
<div class="panel panel-default">
|
|
<div class="panel-heading">
|
|
<i class="fa fa-bolt"></i> Options
|
|
</div>
|
|
<div class="panel-body">
|
|
{!! ExpandedForm::optionsList('create','piggy bank') !!}
|
|
</div>
|
|
</div>
|
|
|
|
</div>
|
|
</div>
|
|
<div class="row">
|
|
<div class="col-lg-12 col-md-12 col-sm-12 col-xs-12">
|
|
<p>
|
|
<button type="submit" class="btn btn-lg btn-success">
|
|
<i class="fa fa-plus-circle"></i> Store new piggy bank
|
|
</button>
|
|
</p>
|
|
</div>
|
|
</div>
|
|
|
|
{!! Form::close() !!}
|
|
@stop
|