@extends('layouts.default') @section('content') {!! Breadcrumbs::renderIfExists(Route::getCurrentRoute()->getName()) !!} {!! Form::open(['class' => 'form-horizontal','id' => 'store','url' => route('bills.store')]) !!}
Mandatory fields
{!! ExpandedForm::text('name') !!} {!! ExpandedForm::tags('match') !!} {!! ExpandedForm::amount('amount_min') !!} {!! ExpandedForm::amount('amount_max') !!} {!! ExpandedForm::date('date',Carbon\Carbon::now()->addDay()->format('Y-m-d')) !!} {!! ExpandedForm::select('repeat_freq',$periods,'monthly') !!}

Optional fields
{!! ExpandedForm::integer('skip',0) !!} {!! ExpandedForm::checkbox('automatch',1,true) !!} {!! ExpandedForm::checkbox('active',1,true) !!}
Options
{!! ExpandedForm::optionsList('create','bill') !!}
{!! Form::close() !!} @stop @section('styles') @stop @section('scripts') @stop