17 lines
429 B
PHP
17 lines
429 B
PHP
<?php
|
|
|
|
namespace App\Controller;
|
|
|
|
use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
|
|
use Symfony\Component\HttpFoundation\Response;
|
|
use Symfony\Component\Routing\Attribute\Route;
|
|
|
|
#[Route('/profile')]
|
|
final class ProfileController extends AbstractController
|
|
{
|
|
#[Route('/edit', name: 'profile_edit')]
|
|
public function edit(): Response
|
|
{
|
|
return $this->render('edit/sign-in.html.twig', []);
|
|
}
|
|
} |