@extends('layouts.default') @section('htmlheader_title') Профиль пользователя @endsection @section('content')
Профиль пользователя:{{$user->email}}
Последний визит: {{$user->last_login_at}} с IP адреса:{{$user->last_login_ip}}
@if (isset($profile->avatar)) @else @endif {{ csrf_field() }}









@if ($profile->first_name) @else @endif @if ($errors->has('first_name')) {{ $errors->first('first_name') }} @endif
@if ($profile->middle_name) @else @endif @if ($errors->has('middle_name')) {{ $errors->first('middle_name') }} @endif
@if ($profile->second_name) @else @endif @if ($errors->has('second_name')) {{ $errors->first('second_name') }} @endif
@if ($errors->has('email')) {{ $errors->first('email') }} @endif
@endsection