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

Dashboard

profile Dashboard

  • index
@endsection @section("content")
Edit Profile
{{$full_name}}

{{$email}}

  • {{$full_name}}
  • {{$email}}
  • {{$username}}

Settings

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