@extends("layouts.admin.app") @section("page-title") Dashboard @endSection @section("page-nav-title")

Dashboard

profile Dashboard

  • index
@endsection @section("content")
{{--
--}} {{--
--}} {{--
    --}} {{--
  • Timeline
  • --}} {{--
  • Settings
  • --}} {{--
  • Change Password
  • --}} {{--
--}} {{--
--}} {{--
--}}
Edit Profile
{{$Admin->full_name}}

{{$Admin->email}}

  • {{$Admin->full_name}}
  • {{$Admin->email}}
  • {{$Admin->username}}

Settings

@csrf
has('full_name')) is-invalid @endif" type="text" name="full_name" placeholder="{{__("Enter Full Name")}}" value="{{inputValue("full_name", $Admin->full_name)}}"> @error("full_name")
{{$message}}
@enderror
has('username')) is-invalid @endif" type="text" name="username" placeholder="{{__("Enter Username")}}" value="{{inputValue("username", $Admin->username)}}"> @error("username")
{{$message}}
@enderror
has('email')) is-invalid @endif" type="text" name="email" placeholder="{{__("Enter Email")}}" value="{{$Admin->email}}"> @error("email")
{{$message}}
@enderror

Chanage Password

@csrf
has('oldpassword')) is-invalid @endif" type="text" name="oldpassword" placeholder="{{__("Enter Current password")}}"> @error("oldpassword")
{{$message}}
@enderror
has('password')) is-invalid @endif" type="text" name="password" placeholder="{{__("Enter New password")}}"> @error("password")
{{$message}}
@enderror
has('confirmed_password')) is-invalid @endif" type="text" name="password" placeholder="{{__("Enter Confirmed password")}}"> @error("confirmed_password")
{{$message}}
@enderror
@endsection @section("scripts") @endsection