@extends('layouts/default') {{-- Page title --}} @section('title') {{ trans('general.hello_name', array('name' => $user->present()->fullName())) }} @parent @stop {{-- Account page content --}} @section('content') @if ($acceptances = \App\Models\CheckoutAcceptance::forUser(Auth::user())->pending()->count())
{{ trans('general.unaccepted_profile_warning', array('count' => $acceptances)) }}
@endif
@stop @section('moar_scripts') @include ('partials.bootstrap-table') @stop