@extends('adminlte::page') @section('title', __('title.edit_users')) @section('content_top_nav_right') @endsection @section('content_header') @stop @section('plugins.Flag', true) @section('plugins.Croppie', true) @section('plugins.Select2', true) @section('plugins.BootstrapSwitch', true) @section('plugins.Pace', true) @section('plugins.Toastr', true) @section('plugins.Sweetalert2', true) @section('plugins.IconPicker', true) @section('plugins.ColorPicker', true) @section('plugins.ShowHidePassword', true) @section('content')
@method('PUT') @csrf
@if ($errors->has('name'))
{{ $errors->first('name') }}
@endif
@error('username')
{{ $message }}
@enderror
@error('email')
{{ $message }}
@enderror
@error('password')
{{ $message }}
@enderror
{{ __('form.help_password') }}
@error('password_confirmation')
{{ $message }}
@enderror
@if(Auth::id() != $user->id)
@php $checked = ($user->isBanned()) ? '' : 'checked'; @endphp
@endif
@include('admin.settings._link-modal') @stop @push('css') @include('admin.users._style') @endpush @push('js') @include('layouts.partials._notification') @include('layouts.partials._switch_lang') @include('admin.users._script') @endpush @section('footer') @include('layouts.partials._footer') @stop