@extends('layout') @section('title', 'Profile') @section('content') @if($success = Session::get('success')) @elseif($error = Session::get('error')) @elseif($warning = Session::get('warning')) @endif

Profile Anda

@csrf @foreach($user->customer as $item)
@if($user->name == '')

* Isi nama lengkap Anda (Wajib).

@endif
@if($item->nomor_telepon == '')

* Isi nomor telepon agar admin bisa memudahkan menghubungi Anda jika ada kendala pembayaran (Wajib).

@endif @endforeach
@endsection