@extends('layouts.master') @section('title') {{ __('staff') }} @endsection @section('content')

{{ __('Create Staff') }}

{!! Form::text('dob', null, ['required', 'placeholder' => __('dob'), 'class' => 'datepicker-popup-no-future form-control','autocomplete'=>'off']) !!}
@if (Auth::user()->school_id)
@endif @if (!Auth::user()->school_id)
{!! Form::select('school_id[]', $schools, null, ['class' => 'form-control select2-dropdown select2-hidden-accessible','multiple']) !!}
@endif @hasFeature('Staff Management')

@if(!empty(Auth::user()->school_id)) {{ __('Note').' :- '.__('Activating this will consider in your current subscription cycle') }} @endif
@endHasFeature()
@hasFeature('Expense Management') {{-- allowances --}}

{{ __('allowances') }}

{{-- deductions --}}

{{ __('deductions') }}

@endHasFeature

{{ __('Staff List') }}

@if (!Auth::user()->school_id) @endif
{{ __('id') }} {{ __('no.') }} {{ __('image') }} {{ __('name') }} {{ __('role') }} {{ __('mobile') }} {{ __('email') }} {{ __('Salary') }}{{ __('assign_schools') }}{{ __('created_at') }} {{ __('updated_at') }} {{ __('action') }}
@endsection @section('script') @endsection