dbfdg
{{Form::model($indicator,array('route' => array('indicator.update', $indicator->id), 'method' => 'PUT')) }}
{{Form::label('branch',__('Branch'),['class'=>'form-label'])}}
{{Form::select('branch',$brances,null,array('class'=>'form-control select','required'=>'required'))}}
{{Form::label('department',__('Department'),['class'=>'form-label'])}}
{{Form::select('department',$departments,null,array('class'=>'form-control select','required'=>'required','id'=>'department_id'))}}
{{Form::label('designation',__('Designation'),['class'=>'form-label'])}}
@foreach($performance as $performances)
@endforeach
{{Form::close()}}