@extends('socialite::layouts.default') @section('content')
@include('socialite::partials/home-leftbar',compact('trending_tags'))
@include('flash::message')
@if(Auth::user()->username == $album->timeline->username) @endif

{{ $album->name }} {{ $album->privacy }}

{{ $album->about }}


@if((Auth::user()->username != $album->timeline->username) && $album->privacy == 'private')
You can't view this album as its private
@else @if((Auth::user()->username == $album->timeline->username))
Select photos to move from one album to another
{{ csrf_field() }}
{{ csrf_field() }} @if($userAlbums->count() != 0) @endif
@endif
@endif
@endsection @section('bottom_js') @parent @endsection