@extends("layout") @section("content")
|
{{ Form::label('department', 'Requesting Department', array('class'=>'control-label')) }}
{{ Form::select('department', array_merge(array(null => 'Select department... '), $department_list), Input::old('department'), array('class' => 'form-control', 'id'=>'dept')) }}
{{ Form::label('incharge', 'Department Head', array('class'=>'control-label')) }}
{{ Form::select('incharge', array_merge(array(null => 'Select your department head... '), $incharge), Input::old('incharge'), array('class' => 'form-control', 'id' => 'incharge')) }}
{{ Form::label('incharge_mail', 'Supervisor Email', array('class'=>'control-label')) }}
{{ Form::text('incharge_mail','',array('class' => 'form-control', 'rows' => '2', 'id'=>'incharge_mail')) }}
{{ Form::label('requested_by', 'Requested By') }}
{{ Form::text('requested_by', Auth::user()->name,array('class' => 'form-control', 'rows' => '2', 'id'=>'requested_by', 'readonly')) }}
{{ Form::label('requestor_email', 'Requestor Mail') }}
{{ Form::text('requestor_email', Auth::user()->email,array('class' => 'form-control','id'=>'requestor_email','readonly')) }}
|
Voucher Number :: 0{{$voucher_number}}{{ Form::text('folio_number', $voucher_number, array('class' => 'control-label', 'readonly', 'hidden')) }} |