@extends('layouts.user') @section('title', 'Channel settings') @section('content') @if ($errors->any())

Oups some fields are incorrect

@endif @if (session('error'))
{{ session('error') }}
@endif @if (session('status')) @endif

Profile Information

Update you account profile informations and email address.

@method('PUT') @csrf
$user->premium_subscription, 'flex-column flex-lg-row' => !$user->premium_subscription])>
Avatar
Click to update avatar
Member since {{$user->created_at->longAbsoluteDiffForHumans()}}
@if($user->is_premium)
Premium account
@else
Standard account
@endif
@if($user->premium_subscription)
My subscription : {{$user->premium_subscription->plan->price}} € / {{$user->premium_subscription->plan->period}}
Status : !$user->premium_subscription->is_active, 'text-success' => $user->premium_subscription->is_active ])> {{$user->premium_subscription->status}}

@if($user->premium_subscription->is_canceled)

Your subscription was canceled the {{ $user->premium_subscription->ends_at->format('d F Y') }}

Renew my subscription @elseif($user->premium_subscription->is_trial_canceled)

You have canceled your subscription

It will be automatically suspended after the : {{ $user->premium_subscription->ends_at->format('d F Y') }}.

Reactivate my subscription @elseif($user->premium_subscription->on_trial)

You are currently on trial period until {{$user->premium_subscription->trial_ends_at->format('d F Y')}}

Cancel my subscription @elseif($user->premium_subscription->is_unpaid)

Your last payment the {{$user->premium_subscription->next_payment->subDay()->format('d F Y')}} was unsuccessful.

Please update your payment method to continue to profit premium features.

Update payment information @else

Your next bank debit will be on : {{ $user->premium_subscription->next_payment->format('d F Y') }}

Manage my subscription @endif
@else
Become premium
@endif

@
Handle can only contain letters, numbers, periods (.), dashes (-), and underscores (_)
{{ config('app.url') }}/@

Channel Informations

Update you channel informations

@method('PUT') @csrf
Banner
Click to update Banner
/ {{config('validation.user.description.max')}}
show_subscribers)) >
By disabling this option, you don't appear on discover page

Social Connection

Link your account to a social network to use as a sign-in method

Update Password

Ensure your account using a long, random password to stay secure.

@csrf

Delete Account

Permanently delete your account

Once your account is deleted, all of its resources and data will be permanently deleted. Before deleting your account, please download all data or information that you wish to retain.
@include('users.profile.modals.delete_account', $user) @include('users.partials.crop') @endsection