@extends('layouts.app') @extends('layouts.navbar') @section('content')
@include('profile.nav')
@if(session()->has('msg')) @endif

Account Overview

@csrf
@if (Auth::user()->dp!=NULL) Display Picture @else Display Picture @endif
@error('name') {{ $message }} @enderror
@error('whatsapp_no') {{ $message }} @enderror
@error('email') {{ $message }} @enderror


@error('city') {{ $message }} @enderror
@if (Auth::user()->user_type == 1)
@error('meter_fare_type') {{ $message }} @enderror
@endif @if (Auth::user()->user_type == 1)
@error('total_usage') {{ $message }} @enderror
@error('validity_amount') {{ $message }} @enderror
toDateString() }}"> @error('dob') {{ $message }} @enderror
accept_local == 1) checked @endif>
accept_outstation == 1) checked @endif>
accept_rental == 1) checked @endif>
allow_acting == 1) checked @endif>
is_acting == 1) checked @endif>
@endif @if (Auth::user()->vehicle_type_id == 3)
is_mini == 1) checked @endif>
is_sedan == 1) checked @endif>
@endif @if (Auth::user()->vehicle_type_id == 4)
is_closed == 1) checked @endif>
is_400 == 1) checked @endif>
is_750 == 1) checked @endif>
is_1000 == 1) checked @endif>
{{--
is_1500 == 1) checked @endif>
--}}
is_2500 == 1) checked @endif>
{{--
is_6000 == 1) checked @endif>
--}}
is_pm == 1) checked @endif>
@php $availableVehicles = json_decode(Auth::user()->available_vehicles) ?? []; @endphp
@endif
{{ __('Back') }}

{{ __("Wallet") }}

{{ __('Current Balance : ') }}{{ Auth::user()->wallet_balance }}
@if (Auth::user()->wallet_balance<500) {{ __('(Withdrawal Available when Balance reaches 500 and above)') }} @endif
@if (Auth::user()->wallet_balance>=500) @if (Auth::user()->withdrawal_request==0) @else @endif @endif
@endsection @extends('layouts.footer')