@extends('layouts.software') @section('body')
Staff Master
@csrf
@error('account_opening_balance_for_cash') {{ $message }} @enderror
@error('type_for_cash') {{ $message }} @enderror
@error('date_for_cash') {{ $message }} @enderror
@error('account_opening_balance_for_gold') {{ $message }} @enderror
@error('type_for_gold') {{ $message }} @enderror
@error('date_for_gold') {{ $message }} @enderror
@error('currency_id') {{ $message }} @enderror
@if ($errors->has('date_of_joining'))
{{ $errors->first('date_of_joining') }}
@endif
@if ($errors->has('job_title'))
{{ $errors->first('job_title') }}
@endif
@if ($errors->has('first_name'))
{{ $errors->first('first_name') }}
@endif
@if ($errors->has('last_name'))
{{ $errors->first('last_name') }}
@endif
@if ($errors->has('mobile_1'))
{{ $errors->first('mobile_1') }}
@endif
@if ($errors->has('mobile_2'))
{{ $errors->first('mobile_2') }}
@endif
@if ($errors->has('whatsapp'))
{{ $errors->first('whatsapp') }}
@endif
@if ($errors->has('email'))
{{ $errors->first('email') }}
@endif
@if ($errors->has('location_id')) {{ $errors->first('location_id') }} @endif
@if ($errors->has('address'))
{{ $errors->first('address') }}
@endif
@if ($errors->has('salary'))
{{ $errors->first('salary') }}
@endif
@if ($errors->has('advanced_commitment'))
{{ $errors->first('advanced_commitment') }}
@endif
@if ($errors->has('class_of_account_id'))
{{ $errors->first('class_of_account_id') }}
@endif
Upload Documents
@for ($i = 1; $i <= 7; $i++)
@error("doc_name_{$i}")
{{ $message }}
@enderror
@error("doc_file_{$i}")
{{ $message }}
@enderror
@error("doc_expiry_{$i}")
{{ $message }}
@enderror
@endfor
@error('description')
{{ $message }}
@enderror
@endsection