2024-04-07 07:58:06 +00:00
|
|
|
@extends('layouts.app')
|
|
|
|
|
|
|
|
@section('content')
|
|
|
|
<div class="page-content">
|
|
|
|
<div class="container-fluid">
|
|
|
|
<!-- start page title -->
|
|
|
|
@include('layouts.partials.breadcrumb', ['title' => $title])
|
|
|
|
<!-- end page title -->
|
|
|
|
|
2024-04-07 11:54:18 +00:00
|
|
|
{{ html()->form('POST')->route('employee.store')->class(['needs-validation'])->attributes(['novalidate', 'enctype' => 'multipart/form-data'])->open() }}
|
|
|
|
@include('employee::partials.action')
|
|
|
|
{{ html()->form()->close() }}
|
2024-04-07 07:58:06 +00:00
|
|
|
|
|
|
|
</div>
|
|
|
|
<!-- container-fluid -->
|
|
|
|
</div>
|
|
|
|
@endsection
|
|
|
|
|
|
|
|
@push('js')
|
|
|
|
<script src="{{ asset('assets/js/pages/form-validation.init.js') }}"></script>
|
|
|
|
@endpush
|