33 lines
583 B
PHP
33 lines
583 B
PHP
@extends('layouts.landing')
|
|
|
|
@section('title', 'Mi perfil')
|
|
|
|
@section('content')
|
|
|
|
<div class="container-fluid">
|
|
<div class="card shadow mb-4">
|
|
<div class="card-header py-3">
|
|
<h6 class="m-0 font-weight-bold text-primary">Mi perfil</h6>
|
|
</div>
|
|
|
|
<div class="card-body">
|
|
|
|
@livewire('profile.update-profile-information-form')
|
|
|
|
<hr>
|
|
|
|
@livewire('profile.update-password-form')
|
|
|
|
<hr>
|
|
|
|
@livewire('profile.logout-other-browser-sessions-form')
|
|
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
@endsection
|
|
|
|
|
|
|