@extends('layouts.master') @section('title', 'Work Flow Add/Edit') @section('style') @endsection @section('script') @endsection @section('content') @include('layouts.header') @include('layouts.title') @if(session('error'))
{{ session('error') }}
@endif
@yield('title')

{{ csrf_field() }}
@php $steps = isset($wf_steps) && count($wf_steps) > 0 ? $wf_steps : collect([null]); @endphp @foreach($steps as $step) @php $positionType = $step->wf_position_type ?? 'FACULTY'; $positionId = $step->wf_position_id ?? null; @endphp
{{-- ===================================== --}} {{-- Position Type --}} {{-- ===================================== --}}
{{-- ===================================== --}} {{-- Main Position --}} {{-- ===================================== --}}
{{-- ===================================== --}} {{-- Sub Position --}} {{-- ===================================== --}}
{{-- ===================================== --}} {{-- Activity --}} {{-- ===================================== --}}
{{-- Delete --}}
@endforeach



* These fields are required.

@include('layouts.footer') @endsection