@extends('layouts.app') @section('title', 'Add Transactions') @section('content')

Transactions

{!! Form::open(['url' => action('ExpenseController@store'), 'method' => 'post', 'id' => 'add_expense_form', 'files' => true ]) !!}
{!! Form::label('type', 'Transation Type: *') !!}
{!! Form::label('location_type', 'Location *') !!}
{!! Form::label('transaction_date', __('messages.date') . ':*') !!}
{!! Form::text('transaction_date', @format_date('now'), ['class' => 'form-control', 'readonly', 'required', 'id' => 'expense_transaction_date']); !!}
{!! Form::label('ref_no', __('purchase.ref_no').':*') !!} {!! Form::text('ref_no', null, ['class' => 'form-control', 'required']); !!}
{!! Form::close() !!}
@endsection @section('javascript') @endsection