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

Firefly Add a new transfer

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

A transfer moves money between your own accounts.

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

Mandatory fields

{{Form::select('account_to_id',$accounts,Input::old('account_from_id'),['class' => 'form-control'])}}
{{Form::select('account_from_id',$accounts,Input::old('account_to_id'),['class' => 'form-control'])}}

Optional fields

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