@extends('admin.layouts.app') @php $mode = "Add"; $action = route('hc.pos.add'); if(!empty($id)){ $mode = "Edit"; $action = route('hc.pos.edit',$id); } @endphp @section('content')

HC & Position Manager

{{ $mode }} Position

@if(check_route_access('hc.pos.list')) @endif
@include('admin.includes.status')
{{ csrf_field() }}
@if ($errors->has('hc_id')){{ $errors->first('hc_id') }}@endif
pos_name : old('pos_name') }}">
@if ($errors->has('pos_name')){{ $errors->first('pos_name') }}@endif
start_date) : old('start_date') }}" autocomplete="off">
@if ($errors->has('start_date')){{ $errors->first('start_date') }}@endif
end_date) : old('end_date') }}" autocomplete="off">
@if ($errors->has('end_date')){{ $errors->first('end_date') }}@endif
no_of_openings : old('no_of_openings') }}">
salary : old('salary') }}">
@php $rates = config('common.pay_rate_basis'); @endphp
tips : old('tips') }}">
@endsection @section('scripts') @endsection