Open judavid6 opened 3 years ago
Hi @judavid6 on the package we only offers support to the legacy laravel/ui
authentication scaffolding. Integrating with brezee
or Jetstream
should be done on your own. I do not have experience with any of these authentication scaffolding. So, maybe the community can help you here...
Greetings, it would be of interest, to know if you managed to solve the implementation with jetstream since I find myself in the same situation.
Using nascent-africa/jetstrap make it works, I don't have any issue with Jetstream.
Hope it helps.
Hola. Buscando una solución para el uso de los modales de jestream con adminlte3 vi este problema, yo lo solucione: hice una plantilla en layouts con las secciones de adminlte3 y en un $slot cargue profile/show.blade.phe osea reemplace
Hola! Podrías detallarlo un poco mejor? Cómo incorporaste el head en las secciones de adminlte? Saludos y gracias de antemano!
Modifying just 2 files resolved the issue.
1) config\adminlte.php
'livewire' => true,
2) resources\views\profile\show.blade.php
@extends('adminlte::page')
@section('title', 'Profile')
@section('content_header')
<h1>Profile</h1>
@stop
@section('js')
@vite(['resources/css/app.css', 'resources/js/app.js'])
@stop
@section('content')
<div>
<div class="max-w-7xl mx-auto py-10 sm:px-6 lg:px-8">
@if (Laravel\Fortify\Features::canUpdateProfileInformation())
@livewire('profile.update-profile-information-form')
<x-jet-section-border />
@endif
@if (Laravel\Fortify\Features::enabled(Laravel\Fortify\Features::updatePasswords()))
<div class="mt-10 sm:mt-0">
@livewire('profile.update-password-form')
</div>
<x-jet-section-border />
@endif
@if (Laravel\Fortify\Features::canManageTwoFactorAuthentication())
<div class="mt-10 sm:mt-0">
@livewire('profile.two-factor-authentication-form')
</div>
<x-jet-section-border />
@endif
<div class="mt-10 sm:mt-0">
@livewire('profile.logout-other-browser-sessions-form')
</div>
@if (Laravel\Jetstream\Jetstream::hasAccountDeletionFeatures())
<x-jet-section-border />
<div class="mt-10 sm:mt-0">
@livewire('profile.delete-user-form')
</div>
@endif
</div>
</div>
@endsection
Jetstream Using Tailwind CSS I think That is the issue
Describe the bug
Jetstream provides an interface to modify the user information, but when I try to modify the next 2 options with the
AdminLTE
template it doesn't work.Steps To Reproduce
Steps to reproduce the behavior:
Expected behavior
A clear and concise description of what you expected to happen.
Screenshots
If applicable, add screenshots to help explain your problem or to shown the issue.
Environment
Complete the next environment information.
Laravel 8 AdminLTE 3.1.0