@extends('layouts.app')
@section('title')
@yield('subtitle', trans('user.profile')) | {{ $user->name }}
@endsection
@section('content')
@include('users.partials.breadcrumb')
{!! 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']) !!}
@include('users.partials.nav-tabs')
@yield('content-user')
@endsection