@extends('frontend.layouts.app') @section('content')
@include('frontend.student.settings.header')
@include('frontend.student.settings.sidebar')
@if(isset($enrollment)) @if(count($enrollment) == 0)

Course Enroll

@endif @else

Course Enroll

@endif
{{__('Profile')}}
@if(auth::user()->email_verified_at == null || auth::user()->email_verified_at == 'null')
@csrf

Verify your e-mail and get reward!

@endif
@csrf
img

Student ID:{{auth::user()->referral_code}}

@if ($errors->has('image')) {{ $errors->first('image') }} @endif
Balance: {{$student->user->balance}}৳
@if($student->first_name)

{{$student->first_name}}

@else @if ($errors->has('first_name')) {{ $errors->first('first_name') }} @endif @endif
@if($student->last_name)

{{$student->last_name}}

@else @if ($errors->has('last_name')) {{ $errors->first('last_name') }} @endif @endif
@if($user->email)

{{$user->email}}

@else @if ($errors->has('email')) {{ $errors->first('email') }} @endif @endif
@if($student->phone_number)

{{$student->phone_number}}

@else @if ($errors->has('phone_number')) {{ $errors->first('phone_number') }} @endif @endif
@if($user->country)

{{$user->country}}

@else @if ($errors->has('country')) {{ $errors->first('country') }} @endif @endif
@if($user->state)

{{$user->state}}

@else @if ($errors->has('state')) {{ $errors->first('state') }} @endif @endif
@if($user->city)

{{$user->city}}

@else @if ($errors->has('city')) {{ $errors->first('city') }} @endif @endif
@if($user->postal_code)

{{$user->postal_code}}

@else @if ($errors->has('postal_code')) {{ $errors->first('postal_code') }} @endif @endif
@if($user->fb_link)

{{$user->fb_link}}

@else @if ($errors->has('fb_link')) {{ $errors->first('fb_link') }} @endif @endif
@if($user->yt_link)

{{$user->yt_link}}

@else @if ($errors->has('yt_link')) {{ $errors->first('yt_link') }} @endif @endif
@if($student->about_me)

{{$student->about_me}}

@else @endif @if ($errors->has('about_me')) {{ $errors->first('about_me') }} @endif
@if($student->gender)

{{$student->gender}}

@else
gender == 'Male' ? 'checked' : '' }}>
gender == 'Female' ? 'checked' : '' }}>
gender == 'Others' ? 'checked' : '' }}>
@endif @if ($errors->has('gender')) {{ $errors->first('gender') }} @endif
{{__('Your Referral Code')}}

{{ auth::user()->referral_code }}

{{ __('Copy Link') }}

https://webbdnet.com/sign-up/{{auth::user()->referral_code ?? auth::user()->referral_code}}

@endsection @push('style') @endpush @push('script') @if(isset($enrollment)) @if(count($enrollment) == 0) @endif @endif @endpush