{{ Form::label('description', __('messages.common.description').':')}}
{{ Form::label('date',__('messages.time_entry.date').':') }} {{ Form::text('date', null, ['class' => 'form-control','autocomplete' => 'off']) }}
{{ Form::label('amount', __('messages.invoice.amount').':') }}* {{ Form::text('amount', null, ['class' => 'form-control','id'=>'amount','required', 'autocomplete' => 'off','maxlength' => '11','onkeyup' => 'if (/\D/g.test(this.value)) this.value = this.value.replace(/\D/g,"")']) }}
{{ Form::label('category',__('messages.expense.category').':') }} {{ Form::select('category',$category, ['class' => 'form-control','id' => 'category']) }}
{{ Form::label('clientId', __('messages.report.client').':') }}* {{ Form::select('client_id', $clients,null ,['class' => 'form-control','id' => 'clientId','required','placeholder' => 'Select Client']) }}
{{ Form::label('projectId', __('messages.report.project').':') }}* {{ Form::select('project_id',$projects,null,['class' => 'form-control','id' => 'projectId','required','placeholder' => 'Select Project']) }}
{{ Form::label('attachment', __('messages.task.attachments').':') }}
{{ Form::button(__('messages.common.save'), ['type' => 'submit','class' => 'btn btn-primary save-btn', 'data-loading-text' => " Processing..."]) }} {{ __('messages.common.cancel') }}