Silakan lengkapi data di bawah ini dan dapatkan Panda Points
@if(isset($errors))
@foreach($errors as $e)
{{ $e }}
@endforeach
@endif
@if($user != null)
@php
$date = "";
$month = "";
$year = "";
$id_city = ""; // Jakarta
if ($user['birthday'] != "") {
$birthday = date('j-n-Y', strtotime($user['birthday']));
$birthday = explode('-', $birthday);
$date = $birthday[0];
$month = $birthday[1];
$year = $birthday[2];
}
if ($user['id_city'] != "") {
$id_city = $user['id_city'];
}
@endphp
@if($user['birthday']==null || $user['gender']==null || $user['id_city']==null )
{{-- form --}}
{{-- end form --}}
@else
Data is completed
@endif
@else
Data not found
@endif
@stop
@section('page-script')
@stop