Skip to content

Instantly share code, notes, and snippets.

@dirumahrafif
Last active August 30, 2024 01:39
Show Gist options
  • Save dirumahrafif/adad33b4fcd8ccd1772da6a1d07d615f to your computer and use it in GitHub Desktop.
Save dirumahrafif/adad33b4fcd8ccd1772da6a1d07d615f to your computer and use it in GitHub Desktop.
Blade untuk form edit data blog
<x-app-layout>
<x-slot name="header">
<h2 class="font-semibold text-xl text-gray-800 leading-tight">
Edit Tulisan
</h2>
</x-slot>
<div class="py-12">
<div class="max-w-7xl mx-auto sm:px-6 lg:px-8 space-y-6">
<div class="p-4 sm:p-8 bg-white shadow sm:rounded-lg">
<div class="max-w-2xl">
<section>
<header>
<h2 class="text-lg font-medium text-gray-900">
Edit Data Tulisan
</h2>
<p class="mt-1 text-sm text-gray-600">
Silakan melakukan perubahan data
</p>
</header>
<form method="post" action="" class="mt-6 space-y-6" enctype="multipart/form-data">
</form>
</section>
</div>
</div>
</div>
</div>
</x-app-layout>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment