hamjoricantiq

Untitled

Apr 4th, 2020
442
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.65 KB | None | 0 0
  1. Jenis Kelamin: <br>
  2.         <label><input type="radio" name="jenkel" value="L" {{ old('jenkel') == "L" ? 'checked' : '' }}>L</label><br>
  3.         <label><input type="radio" name="jenkel" value="P" {{ old('jenkel') == "" ? 'checked' : '' }}>P</label><br>
  4. Golongan Darah :
  5.         <select name="goldar">
  6.             <option value="">- Pilih Goldar -</option>
  7.             <option value="A" {{ old('goldar') == 'A' ? 'selected' : '' }}>A</option>
  8.             <option value="B" {{ old('goldar') == 'B' ? 'selected' : '' }}>B</option>
  9.             <option value="AB" {{ old('goldar') == 'AB' ? 'selected' : '' }}>AB</option>
  10.             <option value="O" {{ old('goldar') == 'O' ? 'selected' : '' }}>O</option>
  11.         </select>
Advertisement
Add Comment
Please, Sign In to add comment