@extends('layouts/pos_layout') @section('title', '| Branch Employee Config Date Wise') @section('content')
Edit Employee Config
{!! Form::open(array('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 = date('d-m-Y',strtotime($data['active_date'])), ['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('Update', ['id' => 'add', 'class' => 'btn btn-info']); !!} Close
{!! Form::close() !!}
@endsection