@push('css') {{-- Select2 --}} @endpush
Gerenciamento de Usuários
{{-- Messagens da session --}} @include('partials.session-message') @if ($errors->any() || session('error'))
{{$errors->any() ? $errors->first() : session('error')}}
@endif
@if (isset($user))
#
@endif

Dados do Usuário

{{-- Nome --}}
@if ($errors->has('name')) {{ $errors->first('name') }} @endif
{{-- Email --}}
@if ($errors->has('email')) {{ $errors->first('email') }} @endif
{{-- Tipo --}}

Alterar Senha

{{-- Senha --}}
@if ($errors->has('password')) {{ $errors->first('password') }} @endif
{{-- Confirmar Senha --}}
@include('partials.status', ['model' => $user ?? null])
@if(isset($user))
@include('partials.upload', ['model' => $user])
@endif
@push('js') @include('partials.upload-js') @endpush {{-- @TODO: criar mascaras --}}