@extends('webview.main') @section('page-style-plugin') @stop @section('css') @stop @section('content')
Silakan lengkapi data di bawah ini dan dapatkan Panda Points
@if(isset($errors)) @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 --}}
{!! csrf_field() !!}
{{-- end form --}} @else
Data is completed
@endif @else
Data not found
@endif
@stop @section('page-script') @stop