Skip to content

Commit

Permalink
Updated title/header for users, additional fixes for #151
Browse files Browse the repository at this point in the history
  • Loading branch information
snipe committed Jul 8, 2014
1 parent af269b5 commit a7b809c
Showing 1 changed file with 13 additions and 2 deletions.
15 changes: 13 additions & 2 deletions app/views/backend/users/edit.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,13 @@

{{-- Page title --}}
@section('title')
Update User {{ $user->fullName() }} ::
@if ($user->id)
@lang('admin/users/table.updateuser')
{{ $user->fullName() }} ::
@else
@lang('admin/users/table.createuser') ::
@endif

@parent
@stop

Expand All @@ -14,7 +20,12 @@
<a href="{{ URL::previous() }}" class="btn-flat gray"><i class="icon-circle-arrow-left icon-white"></i> @lang('general.back')</a>
</div>
<h3>
Update User {{{ $user->fullName() }}}
@if ($user->id)
@lang('admin/users/table.updateuser')
{{ $user->fullName() }}
@else
@lang('admin/users/table.createuser')
@endif
</h3>
</div>

Expand Down

0 comments on commit a7b809c

Please sign in to comment.