user.blade.php 413 B

123456789101112131415161718192021222324
  1. @extends('layout')
  2. @section('title')
  3. {{$title}}
  4. @endsection
  5. @section('content')
  6. <h1>Users Info</h1>
  7. <p>User name: {{$name}}</p>
  8. @endsection
  9. <!-- <!DOCTYPE html>
  10. <html>
  11. <head>
  12. <meta charset="utf-8" />
  13. <meta name="viewport" content="width=device-width, initial-scale=1"/>
  14. <title>{{$title}}</title>
  15. </head>
  16. <body>
  17. <h1>Users Info</h1>
  18. <p>User name: {{$name}}</p>
  19. </body>
  20. </html> -->