@extends('layouts/pos_layout') @section('title', '| Branch Employee Config Date Wise') @section('content')
Employee Config
{!! Form::open(['url' => '', 'role' => 'form', 'class' => 'form-horizontal form-groups']) !!}
{!! Form::label('branch_id', 'Branch:*', ['class' => 'col-sm-3 control-label']) !!}

{!! Form::label('active_date', 'Active Date:', ['class' => 'col-sm-3 control-label']) !!}
{!! Form::text('active_date', $value = null, [ 'class' => 'form-control', 'id' => 'active_date', 'type' => 'text', 'readonly' => true, ]) !!}

@if ($incentiveSteps) @foreach ($incentiveSteps as $incentiveStep) @endforeach @endif
Step Employee
{{ $incentiveStep->name }}

{!! Form::label('submit', ' ', ['class' => 'col-sm-3 control-label']) !!}
{!! Form::submit('Submit', ['id' => 'add', 'class' => 'btn btn-info']) !!} Close
{!! Form::close() !!}
@endsection