@extends('layouts.template') @section('content')
@if(session('msg_success')) @endif @if(session('msg_update')) @endif @if(session('msg_delete')) @endif
{{ Form::open(['url' => 'saverecaccount', 'class' => 'form-horizontal', 'method' => 'post', 'files'=>true]) }}
{{ Form::label('batch', 'Batch Type', array('class' =>'control-label col-sm-4 col-md-4 col-lg-4')) }}
{{ Form::select('batch_type', array( 'B001' => 'Bank Receipt', 'C001' => 'Cash Receipt',),null, ['class' => 'form-control batchtype']) }}
{{ Form::label('actcode', 'Account Head', array('class' =>'control-label col-sm-4 col-md-4 col-lg-4')) }}
{{ Form::label('vou_num', 'Voucher Number', array('class' =>'control-label col-sm-4 col-md-4 col-lg-4')) }}
{{ Form::text('vou_num', '', array('class' =>'form-control')) }}
{{ Form::label('voudate', 'Voucher Date', array('class' =>'control-label col-sm-4 col-md-4 col-lg-4')) }}
{{ Form::label('transection', 'Amount', array('class' =>'control-label col-sm-4 col-md-4 col-lg-4')) }}
{{ Form::number('transection', '', array('class' =>'form-control','required'=>'required')) }}
{{ Form::label('ref_no', 'Reference Number', array('class' =>'control-label col-sm-4 col-md-4 col-lg-4')) }}
{{ Form::text('ref_no', '', array('class' =>'form-control', 'placeholder'=>'Reference Number')) }}
{{ Form::label('narration', 'Narration', array('class' =>'control-label col-sm-4 col-md-4 col-lg-4')) }}
{{ Form::text('narration', '', array('class' =>'form-control', 'placeholder'=>'Narration')) }}
Close {{ Form::submit('Save Only', array('class' => 'btn btn-success btn-sm','name'=>'Save')) }}
{{ Form::close() }}

@stop