@extends('Backend.layouts.app') @section('content')
User Avatar

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

{{Auth::user()->email}} Admin
  • Description {{auth()->user()->description}}
User Details
  • @if(Session::has('update-success'))
    {{Session::get('update-success')}}
    @endif
    {{csrf_field()}}
    @if($errors->has('name')) ** {{ $errors->first('name') }} @endif
    @if($errors->has('email')) ** {{ $errors->first('email') }} @endif
    @if($errors->has('description')) ** {{ $errors->first('description') }} @endif
  • User Avatar
    Change Password
    @if(Session::has('success'))
    {{Session::get('success')}}
    @endif
    {{csrf_field()}}
    @if($errors->has('old_password')) ** {{ $errors->first('old_password') }} @endif
    @if($errors->has('confirm_password'))
    ** {{ $errors->first('confirm_password') }}
    @endif
@endsection