@extends('layouts.app', ['activePage' => 'user-management', 'menuParent' => 'laravel', 'titlePage' => __('User Management')]) @section('content')
{{-- Left --}}
@csrf @method('put')
person

{{ __('Edit User') }}

{{-- Picture --}}
@if ($user->picture) ... @else ... @endif
{{ __('Select image') }} {{ __('Change') }} {{ __('Remove') }}
@include('alerts.feedback', ['field' => 'photo'])
{{-- First Name --}}
@include('alerts.feedback', ['field' => 'first_name'])

{{-- Last Name --}}
@include('alerts.feedback', ['field' => 'last_name'])

{{-- Email --}}
@include('alerts.feedback', ['field' => 'email'])

{{-- Role --}}
@include('alerts.feedback', ['field' => 'role_id'])
{{-- Edit Password --}}
lock

{{ __('Change password') }}

@csrf @method('put')
@include('alerts.feedback', ['field' => 'password'])
{{-- Right --}}
device_hub

Applications

@foreach ($apps as $app)

{{ $app->application_id }}

arrow_circle_up
@endforeach
work_outline

Projects

{{-- Assign Projects --}}
@csrf @method('put')
{{-- Unassign Projects --}}
@csrf @method('put')
@foreach ($projects as $project) @if ($project->is_active) @else @endif @endforeach
Project
Project Unassign
{{ $project->name }} - {{ $project->client()->first()->name }}
{{ $project->name }} - {{ $project->client()->first()->name }} INACTIVE
assignment_ind

Disciplines

{{-- Assign Disciplines --}}
@csrf @method('put')
{{-- Unassign Disciplines --}}
@csrf @method('put')
@foreach ($disciplines as $discipline) @endforeach
Discipline
Discipline Unassign
{{ $discipline->name }}
@endsection @push('js') @endpush