Files
jongryangje/app/Views/admin/company/create.php
2026-04-08 00:19:00 +09:00

49 lines
2.8 KiB
PHP

<section class="border-b border-gray-300 p-2 shrink-0 bg-control-panel">
<span class="text-sm font-bold text-gray-700">업체 등록</span>
</section>
<div class="border border-gray-300 p-4 mt-2 bg-white max-w-3xl">
<form action="<?= mgmt_url('companies/store') ?>" method="POST" class="space-y-4">
<?= csrf_field() ?>
<div class="flex flex-wrap items-center gap-2">
<label class="block text-sm font-bold text-gray-700 w-28">업체유형 <span class="text-red-500">*</span></label>
<select class="border border-gray-300 rounded px-3 py-1.5 text-sm w-60" name="cp_type" required>
<option value="">선택</option>
<option value="협회" <?= old('cp_type') === '협회' ? 'selected' : '' ?>>협회</option>
<option value="제작업체" <?= old('cp_type') === '제작업체' ? 'selected' : '' ?>>제작업체</option>
<option value="회수업체" <?= old('cp_type') === '회수업체' ? 'selected' : '' ?>>회수업체</option>
</select>
</div>
<div class="flex flex-wrap items-center gap-2">
<label class="block text-sm font-bold text-gray-700 w-28">업체명 <span class="text-red-500">*</span></label>
<input class="border border-gray-300 rounded px-3 py-1.5 text-sm w-60" name="cp_name" type="text" value="<?= esc(old('cp_name')) ?>" required/>
</div>
<div class="flex flex-wrap items-center gap-2">
<label class="block text-sm font-bold text-gray-700 w-28">사업자번호</label>
<input class="border border-gray-300 rounded px-3 py-1.5 text-sm w-60" name="cp_biz_no" type="text" value="<?= esc(old('cp_biz_no')) ?>"/>
</div>
<div class="flex flex-wrap items-center gap-2">
<label class="block text-sm font-bold text-gray-700 w-28">대표자</label>
<input class="border border-gray-300 rounded px-3 py-1.5 text-sm w-60" name="cp_rep_name" type="text" value="<?= esc(old('cp_rep_name')) ?>"/>
</div>
<div class="flex flex-wrap items-center gap-2">
<label class="block text-sm font-bold text-gray-700 w-28">전화</label>
<input class="border border-gray-300 rounded px-3 py-1.5 text-sm w-60" name="cp_tel" type="text" value="<?= esc(old('cp_tel')) ?>"/>
</div>
<div class="flex flex-wrap items-center gap-2">
<label class="block text-sm font-bold text-gray-700 w-28">주소</label>
<input class="border border-gray-300 rounded px-3 py-1.5 text-sm w-96" name="cp_addr" type="text" value="<?= esc(old('cp_addr')) ?>"/>
</div>
<div class="flex gap-2 pt-2">
<button type="submit" class="bg-btn-search text-white px-6 py-1.5 rounded-sm text-sm shadow hover:opacity-90 transition">등록</button>
<a href="<?= mgmt_url('companies') ?>" class="bg-gray-200 text-gray-700 px-6 py-1.5 rounded-sm text-sm hover:bg-gray-300 transition">취소</a>
</div>
</form>
</div>