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