@extends('layouts.default') @section('content') {!! Breadcrumbs::renderIfExists(Route::getCurrentRoute()->getName()) !!} {!! Form::open(['class' => 'form-horizontal','id' => 'store','url' => route('piggy-banks.store')]) !!}
Mandatory fields
{!! ExpandedForm::text('name') !!} {!! ExpandedForm::select('account_id',$accounts,null,['label' => 'Save on account']) !!} {!! ExpandedForm::amount('targetamount') !!}
Optional fields
{!! ExpandedForm::date('targetdate') !!} {!! ExpandedForm::checkbox('remind_me','1',false,['label' => 'Remind me']) !!} {!! ExpandedForm::select('reminder',$periods,'month',['label' => 'Remind every']) !!}
Options
{!! ExpandedForm::optionsList('create','piggy bank') !!}

{!! Form::close() !!} @stop