@extends('layouts.app') @section('title', 'Tambah Teknisi') @section('breadcrumb') @endsection @section('content')
@csrf
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
Teknisi ini akan terdaftar di cabang yang dipilih
@else
Teknisi akan didaftarkan ke cabang Anda: {{ auth()->user()->branch->name ?? '-' }}
@endif
@error('specialization')
{{ $message }}
@enderror
@error('status')
{{ $message }}
@enderror
Batal
@endsection