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

{{__("Dashboard")}}

{{__("profile Dashboard")}}

  • {{__("index")}}
@endsection @section("content")
@foreach($consultants as $consultant)
id) }}" style="float: right;" class="btn btn-rounded btn-success mb-5"> Edit Profile
{{$consultant->full_name}}

{{$consultant->email}}

  • {{$consultant->full_name}}
  • {{$consultant->email}}
  • {{$consultant->username}}
@endforeach

Settings

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