@extends('layouts.app') @if(count(array($user)) > 0) @section('title', $user->name) @endif @section('content') @component('components.cropper.editelement',['width'=>'270','height'=>'270','type'=>'squre','table_name'=>'users','table_id'=>$user->id,'table_field'=>'pic_path']) @endcomponent
@include('layouts.leftside-menubar')
@php $passcode = "/".($user->role=='student' ? 1:0)."/".($user->role=='teacher' ? 1: ($user->role=='student' ? 0:2)); @endphp {{ucfirst($user->role)}} / @lang('Profile')
@if(count(array($user)) > 0)
@if (session('status'))
{{ session('status') }}
@endif @component('components.user-profile',['user'=>$user]) @endcomponent
@else
@lang('No Related Data Found.')
@endif
@endsection