@extends('super_admins.layouts.master') @section('title') Your Profile @endsection @section('css') @include('super_admins.includes.datatable_css') @endsection @section('content')

Your Profile

{{ $user ? $user->name : '' }}

{{ $user ? $user->email : '' }}
User profile picture
Your Credentials
@csrf @method('PUT')
@if ($errors->has('name')) {{ $errors->first('name') }} @endif
@if ($errors->has('email')) {{ $errors->first('email') }} @endif
@if ($errors->has('profile_image_path')) {{ $errors->first('profile_image_path') }} @endif
@if ($errors->has('password')) {{ $errors->first('password') }} @endif
@if ($errors->has('password')) {{ $errors->first('password') }} @endif
@endsection @section('scripts') @include('super_admins.includes.datatable_scripts') @endsection