@extends('socialite::layouts.default') @section('content')
@include('socialite::partials/usermenu-settings')

{{ trans('socialite::common.wallpaper_settings') }}

@include('flash::message')

{{ trans('socialite::common.upload_new') }}


{{ csrf_field() }}
@if(Auth::user()->timeline->background_id != NULL)
{{ trans('socialite::common.active_wallpaper') }}
{{ Auth::user()->timeline->wallpaper->title }}
@if(Auth::user()->timeline->background_id == Auth::user()->timeline->wallpaper->id) {{ trans('socialite::common.active') }} @endif
@if(Auth::user()->timeline->background_id == Auth::user()->timeline->wallpaper->id) {{ trans('socialite::common.no_wallpaper') }} @else {{ trans('socialite::common.activate') }} @endif
@endif

{{ trans('socialite::common.select_from_existing') }}


@if(count($wallpapers) > 0) @else
{{ trans('socialite::common.no_existing_wallpapers') }}
@endif
@endsection