@extends('layouts.default') @section('content')

Firefly Add a new withdrawal

Technically speaking, withdrawals, deposits and transfers are all transactions, moving money from account A to account B.

A withdrawal is when you spend money on something, moving an amount to a beneficiary.

{{Form::open(['class' => 'form-horizontal'])}}

Mandatory fields

{{Form::select('account_id',$accounts,Input::old('account_id'),['class' => 'form-control'])}}
This field will auto-complete your existing beneficiaries (if any), but you can type freely to create new ones.

Optional fields

{{Form::select('budget_id',$budgets,Input::old('budget_id') ?: 0,['class' => 'form-control'])}} Select one of your budgets to make this transaction a part of it.
Add more fine-grained information to this transaction by entering a category. Like the beneficiary-field, this field will auto-complete existing categories but can also be used to create new ones.
@stop @section('scripts') @stop