@extends('super_admins.layouts.master') @section('title') Your Profile @endsection @section('css') @include('super_admins.includes.datatable_css') @endsection @section('content') Your Profile Home Profile {{ $user ? $user->name : '' }} {{ $user ? $user->email : '' }} Your Credentials @csrf @method('PUT') Name @if ($errors->has('name')) {{ $errors->first('name') }} @endif Email @if ($errors->has('email')) {{ $errors->first('email') }} @endif Profile Image @if ($errors->has('profile_image_path')) {{ $errors->first('profile_image_path') }} @endif Password @if ($errors->has('password')) {{ $errors->first('password') }} @endif Confirm Password @if ($errors->has('password')) {{ $errors->first('password') }} @endif Update @endsection @section('scripts') @include('super_admins.includes.datatable_scripts') @endsection