@extends('agency.layouts.app') @section('title', 'Personel Düzenle') @section('page_title', 'Personel Düzenle') @php $breadcrumbs = [ ['title' => 'Dashboard', 'url' => route('agency.dashboard')], ['title' => 'Personel ve Yetki', 'url' => '#'], ['title' => 'Personeller', 'url' => route('agency.staff-management.staff.index')], ['title' => $staff->getFullNameAttribute(), 'url' => ''] ]; @endphp @section('content')
@csrf @method('PUT')
@if(session('error'))
{{ session('error') }}
@endif @if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
Kişisel Bilgiler
user_id ? 'required' : '' }}>
@if(!$staff->user_id)
Sisteme giriş hesabı oluşturmak e-posta adresini ve rol seçimini zorunlu kılar.
@else
Değiştirmek istemiyorsanız boş bırakın.
@endif
Kurumsal Bilgiler
Durum / Yetki
@if($staff->user_id)

@endif
is_active) ? 'checked' : '' }}>
İptal
@endsection @push('scripts') @endpush