@extends('theme.master') @section('title', 'Profile & Setting') @section('content') @include('admin.message') {{ __('frontstaticword.UserProfile') }} {{ csrf_field() }} {{ method_field('PUT') }} @if(Auth::User()->user_img != null || Auth::User()->user_img !='') @else @endif {{ Auth::User()->fname }} {{ Auth::User()->lname }} {{ __('frontstaticword.MyCourses') }} {{ __('frontstaticword.MyWishlist') }} {{ __('frontstaticword.PurchaseHistory') }} {{ __('frontstaticword.UserProfile') }} @if(Auth::User()->role == "user") {{ __('frontstaticword.BecomeAnInstructor') }} @endif {{ __('frontstaticword.PersonalInfo') }} {{ __('frontstaticword.FirstName') }} {{ __('frontstaticword.Email') }} {{ __('frontstaticword.DateofBirth') }} {{ __('frontstaticword.LastName') }} {{ __('frontstaticword.Mobile') }} {{ __('frontstaticword.ChooseGender') }}: gender == 'm' ? 'checked' : '' }}> {{ __('frontstaticword.Male') }} gender == 'f' ? 'checked' : '' }}> {{ __('frontstaticword.Female') }} gender == 'o' ? 'checked' : '' }}> {{ __('frontstaticword.Other') }} {{ __('frontstaticword.address') }} {{ $orders->address }} {{ __('frontstaticword.Country') }}: {{ __('frontstaticword.SelectanOption') }} @foreach ($countries as $coun) country_id == $coun->country_id ? 'selected' : ''}}>{{ $coun->nicename }} @endforeach {{ __('frontstaticword.State') }}: {{ __('frontstaticword.SelectanOption') }} @foreach ($states as $s) state_id==$s->id ? 'selected' : '' }}>{{ $s->name}} @endforeach {{ __('frontstaticword.City') }}: {{ __('frontstaticword.SelectanOption') }} @foreach ($cities as $c) city_id == $c->id ? 'selected' : ''}}>{{ $c->name }} @endforeach {{ __('frontstaticword.AuthorBio') }} {{ $orders->detail }} {{ __('frontstaticword.UpdatePassword') }}: {{ __('frontstaticword.Password') }}: {{ __('frontstaticword.ConfirmPassword') }}: {{ __('frontstaticword.SocialProfile') }} {{ __('frontstaticword.FacebookUrl') }} {{ __('frontstaticword.YoutubeUrl') }} {{ __('frontstaticword.TwitterUrl') }} {{ __('frontstaticword.LinkedInUrl') }} {{ __('frontstaticword.UpdateProfile') }} @endsection @section('custom-script') @endsection