18 lines
490 B
PHP
18 lines
490 B
PHP
@extends('layouts.app')
|
|
|
|
@section('title', __('employee.create'))
|
|
|
|
@section('content')
|
|
<div class="max-w-4xl mx-auto">
|
|
<div class="mb-6">
|
|
<h1 class="text-2xl font-bold text-gray-900">{{ __('employee.create') }}</h1>
|
|
</div>
|
|
|
|
<div class="bg-white rounded-lg shadow p-6">
|
|
<form action="{{ route('employees.store') }}" method="POST" enctype="multipart/form-data">
|
|
@csrf
|
|
@include('employees.form')
|
|
</form>
|
|
</div>
|
|
</div>
|
|
@endsection |