Advertisement
edu_valdes

Untitled

Jul 12th, 2019
256
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.62 KB | None | 0 0
  1. @extends('adminlte::page')
  2. @section('title', 'Usuarios')
  3. @section('content_header')
  4. <section class="content-header">
  5. <h1>
  6. Perfil de usuario
  7. </h1>
  8. <ol class="breadcrumb">
  9. <li><a href="/home"><i class="fa fa-dashboard"> Inicio</i></a>
  10. <li><a href="/users"><i class="fa fa-fw fa-user "></i>Perfil</a></li>
  11. </ol>
  12. </section>
  13. @stop
  14. @section('css')
  15. @toastr_css
  16. @stop
  17.  
  18.  
  19. @section('content')
  20. <!-- {{ $user }}
  21. @foreach($user->roles as $role)
  22. {{$role->name}}
  23. @endforeach -->
  24.  
  25.  
  26. <!-- Main content -->
  27. <section class="content">
  28.  
  29. <div class="row">
  30. <div class="col-md-4 col-md-offset-4">
  31.  
  32. <!-- Profile Image -->
  33. <div class="box box-primary">
  34. <div class="box-body box-profile">
  35.  
  36. <h3 class="profile-username text-center">{{$user->name}}</h3>
  37. <p class="text-muted text-center">
  38. @foreach($user->roles as $role)
  39. {{$role->name}}
  40. @endforeach
  41. </p>
  42. <hr>
  43. <b>Correo</b> <a class="pull-right">{{$user->email}}</a>
  44. <hr>
  45. <b>Fecha de creación</b> <a class="pull-right">{{$user->created_at}}</a>
  46. <hr>
  47. <b>Última Actualización</b> <a class="pull-right">{{$user->email}}</a>
  48. <hr>
  49. <strong><i class="fa fa-file-text-o margin-r-5"></i> Notas</strong>
  50. <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Etiam fermentum enim neque.</p>
  51.  
  52. </div>
  53. <!-- /.box-body -->
  54. </div>
  55. <!-- /.box -->
  56. </div>
  57. <!-- /.col -->
  58.  
  59. </div>
  60. <!-- /.row -->
  61.  
  62. </section>
  63. <!-- /.content -->
  64.  
  65. @stop
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement