@php if (empty($user_meta)) { $user_userid = ''; $user_title = ''; $user_username = ''; $user_firstname = ''; $user_lastname = ''; $user_position = ''; $user_email = ''; $user_group = ''; $user_school = ''; $user_picture = ''; } else { $user_userid = $user_meta->user_userid; $user_title = $user_meta->user_title; $user_username = $user_meta->user_username; $user_firstname = $user_meta->user_firstname; $user_lastname = $user_meta->user_lastname; $user_position = $user_meta->user_position; $user_email = $user_meta->user_email; $user_group = $user_meta->user_group; $user_school = $user_meta->user_school; $user_picture = $user_meta->user_picture; } @endphp @extends('layouts.master') @section('title', 'My Profile') @section('style') @endsection @section('script') @endsection @section('content') @include('layouts.header')