perling/resources/views/perusahaan/kelengkapan.blade.php

24 lines
553 B
PHP

<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Kelengkapan Perusahaan</title>
</head>
<body>
<h1>Lengkapi Data Perusahaan</h1>
<p>User ID: {{ $userId }}</p>
<p>Daftar ID: {{ $daftarId }}</p>
<form method="post" action="#">
@csrf
<label>Nama Perusahaan</label>
<input type="text" name="NamaPerusahaan" value="" />
<br />
<label>Alamat</label>
<textarea name="Alamat"></textarea>
<br />
<button type="submit">Simpan</button>
</form>
</body>
</html>