@extends('tenants.layouts.master') @section('title') @if (isset($edit_list) and !empty($edit_list)) @lang('Employee Edit') @else @lang('Employee Add') @endif @endsection @section('css') @endsection @section('content') @component('tenants.components.breadcrumb') @slot('li_1') Employee @endslot @slot('title') {{ (isset($edit_list) and !empty($edit_list)) ? 'Edit' : 'Add' }} Employee @endslot @endcomponent
@csrf

Personal Details

@if ( (auth()->user()->can('employee create') && !(isset($edit_list) and !empty($edit_list))) || (auth()->user()->can('employee edit') && (isset($edit_list) and !empty($edit_list))))
@endif
@if (isset($edit_list->profiles->id)) Image preview @endif
{{--
@if (isset($edit_list->profiles->id))
{{ $edit_list->profiles->orginal_file_name }}
@endif
--}}

Organization Details

{{-- --}}

Role Details

Payrole Details

{{--
--}}

Wage Details

@endsection @section('script') @endsection