@extends('layouts.main') @section('title') Личный кабинет | Pravdatut.com @endsection @section('og_image') {{url('/img/logotype.svg')}} @endsection @section('og_url') {{ route('profile') }} @endsection @section('content')
@include('components.breadcrumbs', ['breadcrumbs' => [ ['link' => url('/'), 'title' => 'Главная'], ['title' => 'Профайл'], ]])
{{--
--}} {{--

Личный кабинет пользователя

--}} {{-- --}} {{--
--}}

Личный кабинет пользователя

@if(session()->has('success'))
x {{ session()->get('success') }}
@endif @if(session()->has('error'))
x {{ session()->get('error') }}
@endif
{{--Photo block--}}
{{ csrf_field() }} @if ($errors->has('image')) {{ $errors->first('image') }} @endif
{{--Photo block--}}

{{Auth::user()->name}}

img @if(Auth::user()->status_pay == 1) Про-Аккаунт активирован @else {{--Bye Premium Account--}}
{{--End Bye Premium Account--}} @endif
Возникли вопросы? свяжитесь з модератором!

Изменить пароль

{{ csrf_field() }} @if ($errors->has('passwordold')) {{ $errors->first('passwordold') }} @endif @if ($errors->has('password')) {{ $errors->first('password') }} @endif

Последние мнение

@if(!$last_comments->isEmpty())
@include('components.one-comment', ['last_comments' => $last_comments])
@else

Коментариев не найдено

@endif

Добавленные компании

@if(!$companies->isEmpty())
@include('components.one-company', ['companies' => $companies, 'profile' => 1])
@else

Компаний не найдено

@endif
@endsection @section('main-scripts') @endsection