@extends('layouts.app') @section('content')

Edit User: {{ $user->username }}

View
@csrf @method('PUT')
{{ substr($user->username, 0, 1) }}
{{ $user->username }}

{{ $user->email }}

@if($user->id === auth()->id()) Your Account @endif
Minimum 8 characters
is_active) ? 'checked' : '' }} {{ $user->id === auth()->id() ? 'disabled' : '' }}>
Important Notes
  • Changing user role may affect their system permissions
  • Deactivating a user will prevent them from logging in
  • Password should be at least 8 characters long
Cancel
@endsection @push('scripts') @endpush