@extends('layouts.admin') @section('page-title') {{__('Journal Entry Create')}} @endsection @section('breadcrumb') @endsection @push('script-page') @endpush @section('content') {{ Form::open(array('url' => 'journal-entry','class'=>'w-100')) }}
{{ Form::label('journal_number', __('Journal Number'),['class'=>'form-label']) }}
{{ Form::label('date', __('Transaction Date'),['class'=>'form-label']) }}
{{Form::date('date',null,array('class'=>'form-control','required'=>'required'))}}
{{ Form::label('reference', __('Reference'),['class'=>'form-label']) }}
{{ Form::text('reference', '', array('class' => 'form-control')) }}
{{ Form::label('description', __('Description'),['class'=>'form-label']) }} {{ Form::textarea('description', '', array('class' => 'form-control','rows'=>'2')) }}
{{__('Account')}} {{__('Debit')}} {{__('Credit')}} {{__('Description')}} {{__('Amount')}}
{{ Form::select('account', $accounts,'', array('class' => 'form-control select','required'=>'required')) }}
{{ Form::text('debit','', array('class' => 'form-control debit','required'=>'required','placeholder'=>__('Debit'),'required'=>'required')) }}
{{ Form::text('credit','', array('class' => 'form-control credit','required'=>'required','placeholder'=>__('Credit'),'required'=>'required')) }}
{{ Form::text('description','', array('class' => 'form-control','placeholder'=>__('Description'))) }}
0.00
    {{__('Total Credit')}} ({{\Auth::user()->currencySymbol()}}) 0.00
      {{__('Total Debit')}} ({{\Auth::user()->currencySymbol()}}) 0.00
{{ Form::close() }} @endsection