You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

17 lines
608 B

@extends('layouts.app')
@section('title')
{{ $user->name }} - @yield('subtitle', trans('user.profile'))
@endsection
@section('content')
<h1 class="page-header">
<div class="pull-right">
{!! link_to_route('users.edit', trans('user.edit'), [$user], ['id' => 'edit-user-' . $user->id, 'class' => 'btn btn-warning']) !!}
{!! link_to_route('users.index', trans('user.back_to_index'), [], ['class' => 'btn btn-default']) !!}
</div>
{{ $user->name }} <small>@yield('subtitle', trans('user.profile'))</small>
</h1>
@include('users.partials.nav-tabs')
@yield('content-user')
@endsection