@extends('superadmin.layout.master') @section('content')
@if(!empty(auth::guard('admin')->user()->image)) image @else image @endif
{{--
Web Developer
--}}

Personal Details

First Name {{auth::guard('admin')->user()->first_name}}

Last Name {{auth::guard('admin')->user()->last_name}}

Email {{auth::guard('admin')->user()->email}}

{{--

Phone Number {{auth::guard('user')->user()->email}}

--}} {{--

Province {{auth::guard('user')->user()->province}}

--}}
@if (session('success'))
{{ session('success') }}
@endif @csrf

Edit Profile

{{ $errors->first('first_name') }}
Please fill in the first name
{{ $errors->first('last_name') }}
Please fill in the last name
{{ $errors->first('email') }}
Please fill in the email
{{ $errors->first('image') }}
@if(Session::get('errors')) {{-- {{dd(Session::get('errors')->first())}} --}}
{{Session::get('errors')->first()}}
{!!Session::forget('errors')!!} {!!Session::forget('alert')!!} @endif @csrf

Change Paasword

{{ $errors->first('old_password') }}
Please fill in the first name
{{ $errors->first('new_password') }}
Please fill in the last name
{{ $errors->first('confirm_password') }}
Please fill in the last name
@endsection