First Name:
{{ (!Helpers::strIsEmpty(Auth::user()->first_name)) ? Auth::user()->first_name : '- -' }}
Middle Name:
{{ (!Helpers::strIsEmpty(Auth::user()->middle_name)) ? Auth::user()->middle_name : '- -' }}
Last Name:
{{ (!Helpers::strIsEmpty(Auth::user()->last_name)) ? Auth::user()->last_name : '- -' }}
Login E-Mail:
{{ Auth::user()->email }}
User ID:
{{ Auth::user()->id }}
User Created:
{{ date('n/j/Y g:ia', strtotime(Auth::user()->created_at)) }}
Last Updated:
{{ date('n/j/Y g:ia', strtotime(Auth::user()->updated_at)) }}
Author ID:
{{ $info['author']->id }}
Author Created:
{{ date('n/j/Y g:ia', strtotime($info['author']->created_at)) }}
Last Updated:
{{ date('n/j/Y g:ia', strtotime($info['author']->updated_at)) }}
Display Name:
{{ $info['author']->getName() }}
Display E-Mail:
{{ Form::text('display_email', $info['author']->getEmail(false), array('data-type' => 'STRING', 'data-autosave-news' => 'email', 'style' => 'font-size: 9pt;')) }}
Facebook:
{{ Form::text('facebook_handle', $info['author']->facebook_handle, array('data-type' => 'STRING', 'data-autosave-news' => 'facebook_handle', 'style' => 'font-size: 9pt;')) }}
Twitter:
{{ Form::text('twitter_handle', $info['author']->twitter_handle, array('data-type' => 'STRING', 'data-autosave-news' => 'twitter_handle', 'style' => 'font-size: 9pt;')) }}
Instagram:
{{ Form::text('instagram_handle', $info['author']->instagram_handle, array('data-type' => 'STRING', 'data-autosave-news' => 'instagram_handle', 'style' => 'font-size: 9pt;')) }}
Outlet:
{{ Form::text('author_outlet', $info['author']->outlet, array('data-type' => 'STRING', 'data-autosave-news' => 'outlet', 'style' => 'font-size: 9pt;')) }}
Title:
{{ Form::text('author_title', $info['author']->title, array('data-type' => 'STRING', 'data-autosave-news' => 'title', 'style' => 'font-size: 9pt;')) }}
Is Publisher?:
{{ ($info['author']->is_publisher) ? 'Yes' : 'No' }}
@if (Helpers::strIsEmpty($info['author']->photo_path))
![]()
@else
 }}?t={{ time() }})
@endif
Display Photo
@if (Helpers::strIsEmpty($info['author']->photo_path))
No author photo uploaded. Use the buttons below to upload an image to be used as your author photo.
@else
Your photo is uploaded. You can replace the image using the buttons below.
@endif
{{ Form::open(array('url' => url('/today/authors') . '/' . $info['author']->id . '/upload-photo',
'files' => true,
'id' => 'edit-news-author',
'name' => 'edit-news-author',
'method' => 'post')) }}
{{ Form::hidden('author_id', $info['author']->id) }}
{{ Form::file('news_author_photo_upload_field', array('name' => 'news_author_photo_upload_field', 'id' => 'news_author_photo_upload_field')) }}
{{ Form::close() }}
Upload Photo
Delete Photo
- Max file size: less than 4 MB
- Image file extensions: .jpg, .jpeg., .gif, or .png
- Dimensions: 64px (W) x 80px (H)