<div class="col-md-6">
  <h4 class="m-t-0 header-title"><b><?php echo e(trans("menu.add_new")); ?> Department</b></h4>
  <hr>
  <form role="form" class="form-horizontal" action="<?php echo e(URL::asset('/')); ?>budgets/categories/create" method="post">
    <input type="hidden" name="_token" value="<?php echo csrf_token(); ?>">
    <input type="hidden" value="<?php echo e(Auth::user()->company_id); ?>" name="company_id" />
    <div class="form-group">
      <label class="col-md-2 control-label">Name</label>
      <div class="col-md-8">
        <input type="text" class="form-control" name="name">
      </div>
      <button class="btn btn-success waves-effect waves-light" type="submit">Submit</button>
    </div>
  </form>
</div>
