MIF_E31222882/resources/views/admin/tables/create.blade.php

70 lines
3.9 KiB
PHP

@extends('layouts.admin')
@section('content')
<div class="p-6 bg-gray-50">
<div class="flex items-center mb-6">
<a href="{{ route('admin.tables.index') }}" class="text-blue-600 hover:text-blue-800 mr-4">
<svg xmlns="http://www.w3.org/2000/svg" class="h-6 w-6" fill="none" viewBox="0 0 24 24"
stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M10 19l-7-7m0 0l7-7m-7 7h18" />
</svg>
</a>
<h1 class="text-3xl font-bold text-gray-800">Tambah Meja Baru</h1>
</div>
<div class="bg-white rounded-lg shadow-md overflow-hidden">
<div class="p-6">
<form action="{{ route('admin.tables.store') }}" method="POST" class="space-y-6">
@csrf
<div class="grid grid-cols-1 md:grid-cols-2 gap-6">
<div>
<label for="name" class="block text-sm font-medium text-gray-700 mb-1">Nama Meja</label>
<input type="text" id="name" name="name" value="{{ old('name') }}"
placeholder="Masukkan nama meja"
class="w-full border border-gray-300 rounded-lg px-4 py-2 focus:outline-none focus:ring-2 focus:ring-blue-500 @error('name') border-red-500 @enderror">
@error('name')
<p class="text-red-500 text-xs mt-1">{{ $message }}</p>
@enderror
</div>
<div>
<label for="brand" class="block text-sm font-medium text-gray-700 mb-1">Merek</label>
<input type="text" id="brand" name="brand" value="{{ old('brand') }}"
placeholder="Masukkan merek meja"
class="w-full border border-gray-300 rounded-lg px-4 py-2 focus:outline-none focus:ring-2 focus:ring-blue-500 @error('brand') border-red-500 @enderror">
@error('brand')
<p class="text-red-500 text-xs mt-1">{{ $message }}</p>
@enderror
</div>
</div>
<div>
<label for="status" class="block text-sm font-medium text-gray-700 mb-1">Status</label>
<select id="status" name="status"
class="w-full border border-gray-300 rounded-lg px-4 py-2 focus:outline-none focus:ring-2 focus:ring-blue-500 @error('status') border-red-500 @enderror">
<option value="Available" {{ old('status') === 'Available' ? 'selected' : '' }}>Available</option>
<option value="Booked" {{ old('status') === 'Booked' ? 'selected' : '' }}>Booked</option>
<option value="Unavailable" {{ old('status') === 'Unavailable' ? 'selected' : '' }}>Unavailable
</option>
</select>
@error('status')
<p class="text-red-500 text-xs mt-1">{{ $message }}</p>
@enderror
</div>
<div class="flex justify-end space-x-3">
<a href="{{ route('admin.tables.index') }}"
class="bg-gray-300 text-gray-700 px-6 py-2 rounded-lg hover:bg-gray-400 transition-colors duration-300">
Batal
</a>
<button type="submit"
class="bg-blue-600 text-white px-6 py-2 rounded-lg hover:bg-blue-700 transition-colors duration-300">
Simpan Meja
</button>
</div>
</form>
</div>
</div>
</div>
@endsection