@extends('layouts.app') @section('urlContent') {!! view('components.breadcrumbs', [ 'b_items' => [ 'Departmanlar' => '/company/departments', 'Departman Oluştur' => '/company/create/department', ], ]) !!} @endsection @section('content')

Kayıt İşlemini Tamamlayın

Kişisel Bilgilerinizi Girerek Kaydınızı Tamamlayınız.

@csrf
Departman Adı
Yetkili Telefon Numarası
Yetkili Adı
Yetkili Soyadı
Yetkili Emaili
Şifre
Adres İçin Bağlantı
Genel Merkez Onayı
@php $type = json_decode(Auth::user()->headOffice->working_types) ?? []; @endphp
Çalışma Tipİ
@if ($type == [])

Firma Çalışma Tipi Mevcut Değil

@endif @if (in_array('hourly', $type)) @endif @if (in_array('daily', $type)) @endif @if (in_array('monthly', $type)) @endif
@if ($errors->any()) @include('components.error-modal-second') @endif @if (session('error')) @include('components.error-modal') @endif @if (session('success')) @include('components.success-modal') @endif @endsection @section('javascript') @endsection