@extends('layout.app') @section('title', 'Register Employee/Driver') @push('header_script') @endpush @section('content')
{!! Form::open([ 'route' => ['employee.store'], 'id' => 'employeeForm', 'method' => 'post', 'autocomplete' => 'off', 'files' => true, 'class' => 'row g-3 needs-validation' ]) !!}
1. Personal Info

{!! Form::select('emp_type', ['' => '--Select--', 'employee' => 'Employee', 'driver' => 'Driver'], old('emp_type'), ['class' => 'form-control select2', 'id' => 'emp_type', 'required']) !!}
{!! Form::select('blood_group', ['' => '--Select--', 'A+' => 'A+', 'A-' => 'A-', 'B+' => 'B+', 'B-' => 'B-', 'AB+' => 'AB+', 'AB-' => 'AB-', 'O+' => 'O+', 'O-' => 'O-'], old('blood_group'), ['class' => 'form-control select2']) !!}
3. Employment Details

Document Uploads (Optional)
Document Type File
Cancel
{!! Form::close() !!}
@endsection @push('footer_script') @endpush