@extends('admin.layout.app') @section('title','Create Department') @section('content')

Create Department

{!! Form::open(['route'=>array('department.store'), 'onsubmit'=>'BtnSubmit.disabled = true','method' => 'post']) !!}
{{$errors->first('department_name')}}
{{--
{!! Form::select("income_account_id", [''=>'Select ']+$incomes, old("income_account_id"), ['class'=>'form-control' ,'id' => 'product_id1','required'=>'required'] ) !!}
{!! Form::select("expense_account_id", [''=>'Select ']+$expenses, old("expense_account_id"), ['class'=>'form-control' ,'id' => 'product_id2','required'=>'required'] ) !!}
--}}
{!! Form::close() !!}
@endsection