@extends('backend.layouts.app') @section('title', @$data['title']) @section('style') @endsection @section('content') {!! breadcrumb([ 'title' => @$data['title'], route('admin.dashboard') => _trans('common.Dashboard'), '#' => @$data['title'], ]) !!}
@csrf @method('PATCH') @if ($errors->any())
@endif
@include('backend.user.employee.form.personal-step', ['user' => $data['user']]) @include('backend.user.employee.form.official-step', ['user' => $data['user']]) @include('backend.user.employee.form.weekend-holiday-step', ['user' => $data['user']]) @include('backend.user.employee.form.contract-step', ['user' => $data['user']])
@endsection @section('script') @endsection