fix: resolve login button overflow and improve form layout spacing

This commit is contained in:
antv
2026-06-30 16:16:56 +07:00
parent 8cbdd93e56
commit d99541b7e4
5 changed files with 39 additions and 18 deletions
@@ -12,9 +12,9 @@ return new class extends Migration
public function up(): void
{
Schema::create('add_card', function (Blueprint $table) {
$table->string('buyer');
$table->integer('buyer');
$table->integer('num_card');
$table->string('seller');
$table->integer('seller');
$table->date('date')->nullable();
});
}