@extends('layouts.app') @section('title', 'Edit Teknisi') @section('breadcrumb') @endsection @section('content')
@csrf @method('PUT')
ID Karyawan: {{ $technician->employee_id }}
INFORMASI AKUN
@error('name')
{{ $message }}
@enderror
@error('email')
{{ $message }}
@enderror
@error('password')
{{ $message }}
@enderror

INFORMASI TEKNISI
@if(auth()->user()->isHO())
@error('branch_id')
{{ $message }}
@enderror
@else
Cabang: {{ $technician->user->branch->name ?? 'Tidak ada cabang' }}
@endif
@error('specialization')
{{ $message }}
@enderror
Batal
@endsection