12 lines
210 B
PHP
12 lines
210 B
PHP
@extends('layouts.app')
|
|
|
|
@section('title', 'Cài đặt tài khoản')
|
|
|
|
@section('content')
|
|
<div class="max-w-2xl mx-auto w-full mt-6">
|
|
|
|
|
|
<x-user-form mode="self" :user="Auth::user()" />
|
|
</div>
|
|
@endsection
|