<div class="col-md-12">
  <div class="kt-portlet__head ">
    <div class="kt-portlet__head-label">
      <h3 class="kt-portlet__head-title"><?php echo e(trans("menu.add_new")); ?> Periods</h3>
    </div>
  </div>
  
  <div class="kt-portlet__body">
  <form role="kt-form" class="" id="budgets_period_create" action="<?php echo e(url('budgets/periods/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="row">
      <div class="form-group col-sm-7">
        <div class="input-daterange input-group" id="kt_datepicker_5">
          <input type="text" class="form-control" autocomplete="off" placeholder="Start Date" name="from" id="from"  />
          <div class="input-group-append">
            <span class="input-group-text">To</span>
          </div>
          <input type="text" class="form-control" autocomplete="off" placeholder="End Date" name="to" id="to" />
        </div>
      </div>
      <div class=" form-group col-sm-3">
        <input type="text" class="form-control" placeholder="Period Name" name="name"  />
      </div>
      <button class="form-group btn btn-success waves-effect waves-light" type="submit">Submit</button>
    </div>
  </form>
  </div>
</div>

