@layout('layouts/main') @set('title', 'Compte') @section('body')
@!component('components/flash')

Welcome {{ auth.user.pseudo }}

return to home page

Here is your personal information:

pseudo : {{ auth.user.pseudo }}

email : {{ auth.user.email }}

created at :

You can modify your personal information:

@component('components/form/form', { 'action': 'modifpseudo', 'method': 'post', 'flash': 'not', }) @!component('components/form/field', { 'label': 'Pseudo :', 'name': 'pseudo', 'type': 'text', 'required': true, 'placeholder': 'new pseudo', }) @!component('components/form/button', { 'type': 'submit', 'text': 'Envoyer', }) @end
@component('components/form/form', { 'action': 'modifemail', 'method': 'post', 'flash': 'not', }) @!component('components/form/field', { 'label': 'Email :', 'name': 'email', 'type': 'text', 'required': true, 'placeholder': 'new email', }) @!component('components/form/button', { 'type': 'submit', 'text': 'Envoyer', }) @end

Delete your compte :

Delete
@end