@extends('layouts.master') @section('title'){{trans_choice('general.journal',1)}} {{trans_choice('general.manual_entry',1)}} @endsection @section('content')
{{trans_choice('general.add',1)}} {{trans_choice('general.journal',1)}} {{trans_choice('general.manual_entry',1)}}
{!! Form::open(array('url' => url('accounting/manual_entry/store'), 'method' => 'post', 'class' => 'form-horizontal')) !!}
{!! Form::label('amount',trans_choice('general.amount',1),array('class'=>'col-sm-3 control-label')) !!}
{!! Form::text('amount',null, array('class' => 'form-control touchspin', 'placeholder'=>"Number or decimal only",'required'=>'required')) !!}
{!! Form::label('date',trans_choice('general.date',1),array('class'=>'col-sm-3 control-label')) !!}
{!! Form::text('date',date("Y-m-d"), array('class' => 'form-control date-picker', 'placeholder'=>"",'required'=>'required')) !!}
{!! Form::label('credit_account_id',trans_choice('general.credit',1),array('class'=>'col-sm-3 control-label')) !!}
{!! Form::select('credit_account_id',$chart_of_accounts,null, array('class' => 'form-control select2', 'placeholder'=>"",'required'=>'')) !!}
{!! Form::label('debit_account_id',trans_choice('general.debit',1),array('class'=>'col-sm-3 control-label')) !!}
{!! Form::select('debit_account_id',$chart_of_accounts,null, array('class' => 'form-control select2', 'placeholder'=>"",'required'=>'')) !!}
{!! Form::label('reference',trans_choice('general.reference',1),array('class'=>'col-sm-3 control-label')) !!}
{!! Form::text('reference',null, array('class' => 'form-control', 'rows'=>"2")) !!}
{!! Form::label('name',trans_choice('general.description',1),array('class'=>'col-sm-3 control-label')) !!}
{!! Form::textarea('name',null, array('class' => 'form-control', 'rows'=>"2")) !!}
{!! Form::close() !!}
@endsection