17 lines
484 B
PHP
17 lines
484 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">
|
|
@if(session('success'))
|
|
<div class="mb-4 p-4 bg-green-50 border border-green-200 text-green-800 rounded-2xl font-semibold flex items-center gap-2 shadow-sm">
|
|
<span>✅</span>
|
|
<span>{{ session('success') }}</span>
|
|
</div>
|
|
@endif
|
|
|
|
<x-user-form mode="self" :user="Auth::user()" />
|
|
</div>
|
|
@endsection
|