{!! $account['id'] !!}
{!! $account['user_id'] !!}
{!! $account['user_type'] !!}
{!! $account['project_id'] !!}
{!! $account['payment_type'] !!}
{!! $account['payment_date'] !!}
{!! $account['debit'] !!}
{!! $account['credit'] !!}
{!! $account['details'] !!}
{!! $account['created_at'] !!}
{!! $account['updated_at'] !!}
{!! $account['deleted_at'] !!}
{!! Form::select('project_id')
-> options(trans('account::account.options.project_id'))
-> label(trans('account::account.label.project_id'))
-> placeholder(trans('account::account.placeholder.project_id'))!!}
{!! Form::select('payment_type')
-> options(trans('account::account.options.payment_type'))
-> label(trans('account::account.label.payment_type'))
-> placeholder(trans('account::account.placeholder.payment_type'))!!}
{!! Form::numeric('debit')
-> label(trans('account::account.label.debit'))
-> placeholder(trans('account::account.placeholder.debit'))!!}
{!! Form::numeric('credit')
-> label(trans('account::account.label.credit'))
-> placeholder(trans('account::account.placeholder.credit'))!!}
{!! Form::textarea ('details')
-> label(trans('account::account.label.details'))
-> placeholder(trans('account::account.placeholder.details'))!!}