user.blade.php 149 B

1234567891011
  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