@extends('layout.app') @section('title', 'Create Employee') @push('header_script') @endpush @section('content')
{!! Form::open([ 'route' => ['employee.store'], 'onsubmit' => 'BtnSubmit.disabled = true', 'class' => 'row g-3 needs-validation', 'method' => 'post', 'autocomplete' => 'off', 'files' => true, ]) !!}
{{ $errors->first('emp_code') }}
{!! Form::select( 'emp_type', ['' => '--Select--', 'employee' => 'Employee', 'driver' => 'Driver'], old('emp_type'), ['class' => 'form-control select2', 'id' => 'emp_type', 'required'], ) !!}
{{ $errors->first('emp_type') }}
{{ $errors->first('employee_name') }}
{{ $errors->first('emp_img') }}
{{ $errors->first('father_name') }}
{{ $errors->first('reference_by') }}
{{ $errors->first('mobile_no') }}
{{ $errors->first('alt_mobile_no') }}
{{ $errors->first('email') }}
{{ $errors->first('aadhaar_card_no') }}
{{ $errors->first('driving_licence_no') }}
{{ $errors->first('driving_licence_valid_upto') }}
{{ $errors->first('pan_card_no') }}
{{ $errors->first('joining_date') }}
{{ $errors->first('salary') }}
{{ $errors->first('address') }}
{{ $errors->first('country') }}
{!! Form::select('state_id', ['' => '--Select--'] + $state, old('state_id'), [ 'class' => 'form-control select2', 'id' => 'state_id', 'required', ]) !!}
{{ $errors->first('state_id') }}
{{ $errors->first('city') }}
Document Type Image
{{ $errors->first('remark') }}
{!! Form::close() !!}
@endsection @push('footer_script') @endpush