@extends('theme.master') @section('title', 'Profile & Setting') @section('content') @include('admin.message') @php $gets = App\Breadcum::first(); @endphp @if(isset($gets)) @if($gets['img'] !== NULL && $gets['img'] !== '') @else @endif {{ __('User Profile') }} @endif {{ csrf_field() }} {{ method_field('PUT') }} @if(Auth::User()->user_img != null || Auth::User()->user_img !='') @else @endif {{ Auth::User()->fname }} {{ Auth::User()->lname }} {{ __('My Courses') }} {{ __('My Wishlist') }} {{ __('Purchase History') }} {{ __('User Profile') }} @if(Auth::User()->role == "user") {{ __('Become An Instructor') }} @endif {{ __('My Bank Details') }} {{ __('2 Factor Auth') }} {{ __('Verifaction') }} {{-- @if(Auth::User()->role == "user" && Auth::User()->role == "Admin") --}} {{ __('Alumini') }} {{-- @endif --}} {{ __('Personal Info') }} {{ __('First Name') }} {{ __('Email') }} {{ __('Last Name') }} {{ __('Mobile') }} {{ __('address') }} {{ $orders->address }} {{ __('Country') }}: {{ __('Select an Option') }} @foreach ($countries as $coun) country_id == $coun->country_id ? 'selected' : ''}}>{{ $coun->nicename }} @endforeach {{ __('State') }}: {{ __('Select an Option') }} @foreach ($states as $s) state_id==$s->id ? 'selected' : '' }}>{{ $s->name}} @endforeach {{ __('City') }}: {{ __('SelectanOption') }} @foreach ($cities as $c) city_id == $c->id ? 'selected' : ''}}>{{ $c->name }} @endforeach {{ __('Author Bio') }} {{ $orders->detail }} {{ __('Update Password') }}: {{ __('Password') }}: {{ __('Confirm Password') }}: {{ __('Social Profile') }} {{ __('Facebook Url') }} {{ __('Youtube Url') }} {{ __('Twitter Url') }} {{ __('Linked In Url') }} {{ __('Update Profile') }} @endsection @section('custom-script') @endsection