design anpasungen und url for image
This commit is contained in:
@@ -1,68 +1,82 @@
|
||||
@extends('layouts.app')
|
||||
|
||||
@section('title', 'Anmelden - NeoNail DB')
|
||||
@section('title', 'Anmelden – NeoNail DB')
|
||||
|
||||
@section('content')
|
||||
<div class="row justify-content-center">
|
||||
<div class="col-md-6 col-lg-4">
|
||||
<div class="d-flex align-items-center justify-content-center" style="min-height: 72vh;">
|
||||
<div style="width: 100%; max-width: 400px;">
|
||||
|
||||
{{-- Logo / Hero --}}
|
||||
<div class="text-center mb-5">
|
||||
<div style="width:72px; height:72px; background:rgba(255,255,255,0.13); border-radius:20px;
|
||||
display:inline-flex; align-items:center; justify-content:center; font-size:2.1rem;
|
||||
margin-bottom:16px; border:1px solid rgba(255,255,255,0.18);">
|
||||
💅
|
||||
</div>
|
||||
<h1 style="color:#fff; font-weight:800; font-size:1.8rem; letter-spacing:-0.04em; margin-bottom:5px;">
|
||||
NeoNail DB
|
||||
</h1>
|
||||
<p style="color:rgba(255,255,255,0.60); margin:0; font-size:0.92rem;">
|
||||
Melden Sie sich an, um Ihre Sammlung zu verwalten
|
||||
</p>
|
||||
</div>
|
||||
|
||||
{{-- Card --}}
|
||||
<div class="card">
|
||||
<div class="card-body p-4">
|
||||
<div class="text-center mb-4">
|
||||
<i class="fas fa-palette fa-3x text-primary mb-3"></i>
|
||||
<h2 class="fw-bold">NeoNail DB</h2>
|
||||
<p class="text-muted">Anmelden um Ihre Sammlung zu verwalten</p>
|
||||
</div>
|
||||
|
||||
<form method="POST" action="https://neonail.vogt.de.com/login">
|
||||
@if($errors->any())
|
||||
<div class="alert alert-danger mb-4">
|
||||
<i class="fas fa-exclamation-circle me-2"></i>
|
||||
{{ $errors->first() }}
|
||||
</div>
|
||||
@endif
|
||||
|
||||
<form method="POST" action="{{ route('login') }}">
|
||||
@csrf
|
||||
|
||||
<div class="mb-3">
|
||||
<label for="email" class="form-label">E-Mail-Adresse</label>
|
||||
<div class="input-group">
|
||||
<span class="input-group-text"><i class="fas fa-envelope"></i></span>
|
||||
<input id="email" type="email" class="form-control @error('email') is-invalid @enderror"
|
||||
name="email" value="{{ old('email') }}" required autocomplete="email" autofocus>
|
||||
</div>
|
||||
<input id="email" type="email"
|
||||
class="form-control @error('email') is-invalid @enderror"
|
||||
name="email" value="{{ old('email') }}"
|
||||
required autocomplete="email" autofocus
|
||||
placeholder="ihre@email.de">
|
||||
@error('email')
|
||||
<span class="invalid-feedback" role="alert">
|
||||
<strong>{{ $message }}</strong>
|
||||
</span>
|
||||
<div class="invalid-feedback">{{ $message }}</div>
|
||||
@enderror
|
||||
</div>
|
||||
|
||||
<div class="mb-3">
|
||||
<div class="mb-4">
|
||||
<label for="password" class="form-label">Passwort</label>
|
||||
<div class="input-group">
|
||||
<span class="input-group-text"><i class="fas fa-lock"></i></span>
|
||||
<input id="password" type="password" class="form-control @error('password') is-invalid @enderror"
|
||||
name="password" required autocomplete="current-password">
|
||||
</div>
|
||||
<input id="password" type="password"
|
||||
class="form-control @error('password') is-invalid @enderror"
|
||||
name="password" required autocomplete="current-password"
|
||||
placeholder="••••••••">
|
||||
@error('password')
|
||||
<span class="invalid-feedback" role="alert">
|
||||
<strong>{{ $message }}</strong>
|
||||
</span>
|
||||
<div class="invalid-feedback">{{ $message }}</div>
|
||||
@enderror
|
||||
</div>
|
||||
|
||||
<div class="mb-3">
|
||||
<div class="mb-4">
|
||||
<div class="form-check">
|
||||
<input class="form-check-input" type="checkbox" name="remember" id="remember" {{ old('remember') ? 'checked' : '' }}>
|
||||
<label class="form-check-label" for="remember">
|
||||
<input class="form-check-input" type="checkbox" name="remember"
|
||||
id="remember" {{ old('remember') ? 'checked' : '' }}>
|
||||
<label class="form-check-label" for="remember"
|
||||
style="font-size:.85rem; color:#6b7280;">
|
||||
Angemeldet bleiben
|
||||
</label>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="d-grid">
|
||||
<button type="submit" class="btn btn-primary btn-lg">
|
||||
<i class="fas fa-sign-in-alt me-2"></i>Anmelden
|
||||
</button>
|
||||
</div>
|
||||
<button type="submit" class="btn btn-primary w-100 btn-lg">
|
||||
<i class="fas fa-sign-in-alt me-2"></i>Anmelden
|
||||
</button>
|
||||
</form>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
@endsection
|
||||
|
||||
@@ -4,174 +4,499 @@
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<meta name="csrf-token" content="{{ csrf_token() }}">
|
||||
<title>@yield("title", "NeoNail Datenbank")</title>
|
||||
|
||||
<!-- Bootstrap CSS -->
|
||||
<title>@yield('title', 'NeoNail DB')</title>
|
||||
|
||||
<link rel="preconnect" href="https://fonts.googleapis.com">
|
||||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
||||
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap" rel="stylesheet">
|
||||
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css" rel="stylesheet">
|
||||
<!-- Font Awesome -->
|
||||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
|
||||
|
||||
|
||||
<style>
|
||||
:root {
|
||||
--primary: #7c3aed;
|
||||
--primary-dark: #5b21b6;
|
||||
--accent: #ec4899;
|
||||
--accent-dark: #be185d;
|
||||
--t: .22s cubic-bezier(.4,0,.2,1);
|
||||
--r: 18px;
|
||||
}
|
||||
|
||||
* { box-sizing: border-box; }
|
||||
html { scroll-behavior: smooth; }
|
||||
|
||||
body {
|
||||
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
|
||||
font-family: 'Inter', sans-serif;
|
||||
background: linear-gradient(135deg, #2d1b69 0%, #6d28d9 45%, #9d174d 100%) fixed;
|
||||
min-height: 100vh;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
}
|
||||
|
||||
|
||||
/* ─── Scrollbar ─── */
|
||||
::-webkit-scrollbar { width: 5px; }
|
||||
::-webkit-scrollbar-track { background: transparent; }
|
||||
::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.22); border-radius: 3px; }
|
||||
|
||||
/* ─── Navbar ─── */
|
||||
.navbar {
|
||||
background: rgba(255, 255, 255, 0.95) !important;
|
||||
backdrop-filter: blur(10px);
|
||||
background: rgba(10, 5, 35, 0.82) !important;
|
||||
backdrop-filter: blur(24px);
|
||||
-webkit-backdrop-filter: blur(24px);
|
||||
border-bottom: 1px solid rgba(255,255,255,0.09);
|
||||
padding: 10px 0;
|
||||
position: sticky;
|
||||
top: 0;
|
||||
z-index: 1030;
|
||||
}
|
||||
|
||||
.navbar-brand {
|
||||
color: #fff !important;
|
||||
font-weight: 800;
|
||||
font-size: 1.1rem;
|
||||
letter-spacing: -0.03em;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 9px;
|
||||
}
|
||||
.brand-icon {
|
||||
width: 32px;
|
||||
height: 32px;
|
||||
background: linear-gradient(135deg, var(--primary), var(--accent));
|
||||
border-radius: 9px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
font-size: 15px;
|
||||
flex-shrink: 0;
|
||||
}
|
||||
.nav-link {
|
||||
color: rgba(255,255,255,0.75) !important;
|
||||
font-weight: 500;
|
||||
font-size: 0.875rem;
|
||||
padding: 7px 13px !important;
|
||||
border-radius: 10px;
|
||||
transition: var(--t);
|
||||
}
|
||||
.nav-link:hover, .nav-link.active {
|
||||
color: #fff !important;
|
||||
background: rgba(255,255,255,0.11);
|
||||
}
|
||||
.dropdown-menu {
|
||||
background: rgba(12, 6, 38, 0.96);
|
||||
backdrop-filter: blur(20px);
|
||||
border: 1px solid rgba(255,255,255,0.11);
|
||||
border-radius: 14px;
|
||||
padding: 7px;
|
||||
box-shadow: 0 20px 48px rgba(0,0,0,0.45);
|
||||
min-width: 180px;
|
||||
}
|
||||
.dropdown-item {
|
||||
color: rgba(255,255,255,0.82) !important;
|
||||
border-radius: 9px;
|
||||
padding: 8px 13px;
|
||||
font-size: 0.875rem;
|
||||
font-weight: 500;
|
||||
transition: var(--t);
|
||||
}
|
||||
.dropdown-item:hover {
|
||||
background: rgba(255,255,255,0.11);
|
||||
color: #fff !important;
|
||||
}
|
||||
.dropdown-item.text-danger { color: #f87171 !important; }
|
||||
.dropdown-item.text-danger:hover { background: rgba(248,113,113,0.12); }
|
||||
.navbar-toggler { border-color: rgba(255,255,255,0.28); }
|
||||
.navbar-toggler-icon { filter: invert(1); }
|
||||
.badge.bg-primary {
|
||||
background: linear-gradient(135deg, var(--primary), var(--accent)) !important;
|
||||
font-size: 0.68rem;
|
||||
padding: 3px 7px;
|
||||
border-radius: 50px;
|
||||
}
|
||||
|
||||
/* ─── Main ─── */
|
||||
main { padding: 28px 0 52px; }
|
||||
|
||||
/* ─── Cards ─── */
|
||||
.card {
|
||||
background: #fff;
|
||||
border: none;
|
||||
border-radius: 15px;
|
||||
box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
|
||||
backdrop-filter: blur(10px);
|
||||
background: rgba(255, 255, 255, 0.9);
|
||||
border-radius: var(--r);
|
||||
box-shadow: 0 4px 20px rgba(0,0,0,0.09);
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.btn-primary {
|
||||
background: linear-gradient(45deg, #667eea, #764ba2);
|
||||
border: none;
|
||||
border-radius: 25px;
|
||||
padding: 10px 25px;
|
||||
.card-header {
|
||||
background: transparent;
|
||||
border-bottom: 1px solid #f3f4f6;
|
||||
padding: 16px 20px;
|
||||
font-weight: 600;
|
||||
font-size: 0.95rem;
|
||||
}
|
||||
|
||||
.btn-primary:hover {
|
||||
background: linear-gradient(45deg, #5a6fd8, #6a4190);
|
||||
transform: translateY(-2px);
|
||||
.card-body { padding: 20px; }
|
||||
|
||||
/* ─── Nail-polish cards ─── */
|
||||
.np-card { transition: transform var(--t), box-shadow var(--t); }
|
||||
.np-card:hover {
|
||||
transform: translateY(-6px);
|
||||
box-shadow: 0 20px 50px rgba(0,0,0,0.18);
|
||||
}
|
||||
|
||||
.nail-polish-card {
|
||||
transition: transform 0.3s ease;
|
||||
}
|
||||
|
||||
.nail-polish-card:hover {
|
||||
transform: translateY(-5px);
|
||||
}
|
||||
|
||||
.nail-polish-image {
|
||||
.np-img {
|
||||
width: 100%;
|
||||
height: 200px;
|
||||
object-fit: cover;
|
||||
border-radius: 10px;
|
||||
display: block;
|
||||
}
|
||||
|
||||
.search-box {
|
||||
border-radius: 25px;
|
||||
border: 2px solid #e9ecef;
|
||||
padding: 10px 20px;
|
||||
.np-placeholder {
|
||||
width: 100%;
|
||||
height: 200px;
|
||||
background: linear-gradient(135deg, #6d28d9 0%, #9d174d 100%);
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
color: rgba(255,255,255,0.4);
|
||||
font-size: 2.4rem;
|
||||
}
|
||||
|
||||
.search-box:focus {
|
||||
border-color: #667eea;
|
||||
box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
|
||||
.np-card .card-body { padding: 14px 16px; }
|
||||
.np-name {
|
||||
font-weight: 600;
|
||||
font-size: 0.92rem;
|
||||
color: #111827;
|
||||
line-height: 1.3;
|
||||
margin-bottom: 2px;
|
||||
}
|
||||
|
||||
@media (max-width: 768px) {
|
||||
.container {
|
||||
padding: 10px;
|
||||
}
|
||||
|
||||
.card {
|
||||
margin-bottom: 15px;
|
||||
}
|
||||
.np-number {
|
||||
font-size: 0.76rem;
|
||||
color: #9ca3af;
|
||||
font-weight: 500;
|
||||
letter-spacing: 0.02em;
|
||||
}
|
||||
|
||||
/* Dropdown-Menüs über alle anderen Elemente legen */
|
||||
.dropdown-menu {
|
||||
z-index: 9999 !important;
|
||||
position: absolute !important;
|
||||
.np-brand {
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
gap: 4px;
|
||||
background: #f3f4f6;
|
||||
color: #6b7280;
|
||||
font-size: 0.7rem;
|
||||
font-weight: 600;
|
||||
padding: 2px 8px;
|
||||
border-radius: 20px;
|
||||
margin-top: 7px;
|
||||
text-transform: uppercase;
|
||||
letter-spacing: 0.04em;
|
||||
}
|
||||
|
||||
/* Navbar hat höheren z-index */
|
||||
.navbar {
|
||||
z-index: 1000 !important;
|
||||
position: relative;
|
||||
|
||||
/* ─── Buttons ─── */
|
||||
.btn {
|
||||
font-weight: 600;
|
||||
font-size: 0.875rem;
|
||||
border-radius: 50px;
|
||||
transition: var(--t);
|
||||
letter-spacing: 0.01em;
|
||||
}
|
||||
|
||||
/* Dropdown-Container */
|
||||
.dropdown {
|
||||
position: relative;
|
||||
.btn-primary {
|
||||
background: linear-gradient(135deg, var(--primary), var(--accent));
|
||||
border: none;
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
/* Sicherstellen, dass Dropdowns über Cards angezeigt werden */
|
||||
.navbar-nav .dropdown-menu {
|
||||
z-index: 9999 !important;
|
||||
position: absolute !important;
|
||||
top: 100% !important;
|
||||
left: 0 !important;
|
||||
float: none !important;
|
||||
.btn-primary:hover, .btn-primary:focus {
|
||||
background: linear-gradient(135deg, var(--primary-dark), var(--accent-dark));
|
||||
transform: translateY(-2px);
|
||||
box-shadow: 0 8px 24px rgba(124,58,237,0.42);
|
||||
color: #fff;
|
||||
}
|
||||
.btn-success {
|
||||
background: linear-gradient(135deg, #059669, #0d9488);
|
||||
border: none;
|
||||
color: #fff;
|
||||
}
|
||||
.btn-success:hover, .btn-success:focus {
|
||||
background: linear-gradient(135deg, #047857, #0f766e);
|
||||
transform: translateY(-2px);
|
||||
box-shadow: 0 8px 24px rgba(5,150,105,0.38);
|
||||
color: #fff;
|
||||
}
|
||||
/* Glass button — for use on gradient background */
|
||||
.btn-glass {
|
||||
border: 1.5px solid rgba(255,255,255,0.32);
|
||||
color: rgba(255,255,255,0.9);
|
||||
background: rgba(255,255,255,0.10);
|
||||
border-radius: 50px;
|
||||
font-weight: 600;
|
||||
font-size: 0.875rem;
|
||||
transition: var(--t);
|
||||
}
|
||||
.btn-glass:hover {
|
||||
background: rgba(255,255,255,0.20);
|
||||
border-color: rgba(255,255,255,0.50);
|
||||
color: #fff;
|
||||
transform: translateY(-2px);
|
||||
}
|
||||
.btn-outline-secondary {
|
||||
border-radius: 50px;
|
||||
font-weight: 600;
|
||||
}
|
||||
.btn-outline-danger { border-radius: 50px; }
|
||||
.btn-sm { padding: 6px 15px; font-size: 0.8rem; }
|
||||
.btn-lg { padding: 13px 28px; font-size: 1rem; }
|
||||
|
||||
/* ─── Page hero (text on gradient) ─── */
|
||||
.page-hero { margin-bottom: 24px; }
|
||||
.page-hero h1 {
|
||||
color: #fff;
|
||||
font-weight: 800;
|
||||
font-size: 1.85rem;
|
||||
letter-spacing: -0.035em;
|
||||
margin: 0 0 4px;
|
||||
}
|
||||
.page-hero p {
|
||||
color: rgba(255,255,255,0.62);
|
||||
margin: 0;
|
||||
font-size: 0.92rem;
|
||||
}
|
||||
.count-chip {
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
gap: 6px;
|
||||
background: rgba(255,255,255,0.13);
|
||||
backdrop-filter: blur(10px);
|
||||
color: #fff;
|
||||
font-size: 0.8rem;
|
||||
font-weight: 600;
|
||||
padding: 6px 14px;
|
||||
border-radius: 50px;
|
||||
border: 1px solid rgba(255,255,255,0.18);
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
/* ─── Search ─── */
|
||||
.search-wrap { position: relative; }
|
||||
.search-icon {
|
||||
position: absolute;
|
||||
left: 16px;
|
||||
top: 50%;
|
||||
transform: translateY(-50%);
|
||||
color: rgba(255,255,255,0.5);
|
||||
pointer-events: none;
|
||||
font-size: 0.85rem;
|
||||
z-index: 1;
|
||||
}
|
||||
.search-input {
|
||||
background: rgba(255,255,255,0.12) !important;
|
||||
border: 1.5px solid rgba(255,255,255,0.22) !important;
|
||||
border-radius: 50px !important;
|
||||
color: #fff !important;
|
||||
padding: 11px 96px 11px 40px !important;
|
||||
font-size: 0.9rem;
|
||||
transition: var(--t);
|
||||
height: auto;
|
||||
}
|
||||
.search-input::placeholder { color: rgba(255,255,255,0.45) !important; }
|
||||
.search-input:focus {
|
||||
background: rgba(255,255,255,0.18) !important;
|
||||
border-color: rgba(255,255,255,0.50) !important;
|
||||
box-shadow: 0 0 0 4px rgba(255,255,255,0.07) !important;
|
||||
color: #fff !important;
|
||||
outline: none;
|
||||
}
|
||||
.search-submit {
|
||||
position: absolute;
|
||||
right: 6px;
|
||||
top: 50%;
|
||||
transform: translateY(-50%);
|
||||
background: rgba(255,255,255,0.18);
|
||||
border: none;
|
||||
border-radius: 50px;
|
||||
color: #fff;
|
||||
padding: 5px 14px;
|
||||
font-size: 0.78rem;
|
||||
font-weight: 600;
|
||||
cursor: pointer;
|
||||
transition: var(--t);
|
||||
}
|
||||
.search-submit:hover { background: rgba(255,255,255,0.28); }
|
||||
.search-clear {
|
||||
position: absolute;
|
||||
right: 70px;
|
||||
top: 50%;
|
||||
transform: translateY(-50%);
|
||||
color: rgba(255,255,255,0.5);
|
||||
font-size: 0.8rem;
|
||||
cursor: pointer;
|
||||
line-height: 1;
|
||||
padding: 4px 6px;
|
||||
border-radius: 50%;
|
||||
transition: var(--t);
|
||||
}
|
||||
.search-clear:hover { color: #fff; background: rgba(255,255,255,0.12); }
|
||||
|
||||
/* ─── Alerts ─── */
|
||||
.alert {
|
||||
border: none;
|
||||
border-radius: 13px;
|
||||
padding: 13px 16px;
|
||||
font-size: 0.875rem;
|
||||
font-weight: 500;
|
||||
background: rgba(255,255,255,0.97);
|
||||
backdrop-filter: blur(12px);
|
||||
}
|
||||
.alert-success {
|
||||
color: #065f46;
|
||||
border-left: 4px solid #059669;
|
||||
}
|
||||
.alert-danger {
|
||||
color: #7f1d1d;
|
||||
border-left: 4px solid #dc2626;
|
||||
}
|
||||
.alert-warning {
|
||||
color: #78350f;
|
||||
border-left: 4px solid #d97706;
|
||||
}
|
||||
.alert-info {
|
||||
color: #1e3a8a;
|
||||
border-left: 4px solid #2563eb;
|
||||
}
|
||||
|
||||
/* ─── Empty state ─── */
|
||||
.empty-state { text-align: center; padding: 56px 20px; }
|
||||
.empty-icon {
|
||||
width: 88px;
|
||||
height: 88px;
|
||||
background: rgba(255,255,255,0.12);
|
||||
border-radius: 50%;
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
font-size: 2.2rem;
|
||||
color: rgba(255,255,255,0.55);
|
||||
margin-bottom: 18px;
|
||||
border: 1px solid rgba(255,255,255,0.18);
|
||||
}
|
||||
.empty-state h4 { color: #fff; font-weight: 700; font-size: 1.25rem; margin-bottom: 7px; }
|
||||
.empty-state p { color: rgba(255,255,255,0.60); margin-bottom: 22px; font-size: 0.92rem; }
|
||||
|
||||
/* ─── Pagination ─── */
|
||||
.pagination { gap: 4px; }
|
||||
.pagination .page-link {
|
||||
background: rgba(255,255,255,0.12);
|
||||
border: 1px solid rgba(255,255,255,0.18);
|
||||
color: rgba(255,255,255,0.85);
|
||||
border-radius: 10px !important;
|
||||
padding: 7px 13px;
|
||||
font-size: 0.85rem;
|
||||
font-weight: 500;
|
||||
transition: var(--t);
|
||||
}
|
||||
.pagination .page-link:hover { background: rgba(255,255,255,0.22); color: #fff; }
|
||||
.pagination .page-item.active .page-link {
|
||||
background: linear-gradient(135deg, var(--primary), var(--accent));
|
||||
border-color: transparent;
|
||||
color: #fff;
|
||||
}
|
||||
.pagination .page-item.disabled .page-link {
|
||||
background: rgba(255,255,255,0.05);
|
||||
color: rgba(255,255,255,0.28);
|
||||
}
|
||||
|
||||
/* ─── Form controls (inside white cards) ─── */
|
||||
.form-label { font-weight: 600; font-size: 0.85rem; color: #374151; margin-bottom: 5px; }
|
||||
.form-control, .form-select {
|
||||
border: 1.5px solid #e5e7eb;
|
||||
border-radius: 11px;
|
||||
padding: 9px 13px;
|
||||
font-size: 0.9rem;
|
||||
transition: var(--t);
|
||||
color: #111827;
|
||||
}
|
||||
.form-control:focus, .form-select:focus {
|
||||
border-color: var(--primary);
|
||||
box-shadow: 0 0 0 3px rgba(124,58,237,0.12);
|
||||
}
|
||||
.form-text { font-size: 0.78rem; color: #9ca3af; }
|
||||
|
||||
/* ─── Mobile ─── */
|
||||
@media (max-width: 767px) {
|
||||
main { padding: 18px 0 40px; }
|
||||
.page-hero h1 { font-size: 1.45rem; }
|
||||
.page-hero { margin-bottom: 18px; }
|
||||
.np-img, .np-placeholder { height: 160px; }
|
||||
}
|
||||
</style>
|
||||
|
||||
@yield("styles")
|
||||
|
||||
@yield('styles')
|
||||
</head>
|
||||
<body>
|
||||
<nav class="navbar navbar-expand-lg navbar-light">
|
||||
<nav class="navbar navbar-expand-lg">
|
||||
<div class="container">
|
||||
<a class="navbar-brand fw-bold" href="{{ route("user-nail-polishes.index") }}">
|
||||
<i class="fas fa-palette me-2"></i>NeoNail DB
|
||||
<a class="navbar-brand" href="{{ route('user-nail-polishes.index') }}">
|
||||
<span class="brand-icon">💅</span>
|
||||
NeoNail DB
|
||||
</a>
|
||||
|
||||
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNav">
|
||||
|
||||
<button class="navbar-toggler" type="button" data-bs-toggle="collapse"
|
||||
data-bs-target="#navbarNav" aria-label="Navigation öffnen">
|
||||
<span class="navbar-toggler-icon"></span>
|
||||
</button>
|
||||
|
||||
|
||||
<div class="collapse navbar-collapse" id="navbarNav">
|
||||
<ul class="navbar-nav me-auto">
|
||||
<ul class="navbar-nav me-auto gap-1">
|
||||
@auth
|
||||
<li class="nav-item">
|
||||
<a class="nav-link" href="{{ route("user-nail-polishes.index") }}">
|
||||
<a class="nav-link {{ request()->routeIs('user-nail-polishes.index') ? 'active' : '' }}"
|
||||
href="{{ route('user-nail-polishes.index') }}">
|
||||
<i class="fas fa-home me-1"></i>Meine Sammlung
|
||||
</a>
|
||||
</li>
|
||||
<li class="nav-item">
|
||||
<a class="nav-link" href="{{ route("user-nail-polishes.available") }}">
|
||||
<a class="nav-link {{ request()->routeIs('user-nail-polishes.available') ? 'active' : '' }}"
|
||||
href="{{ route('user-nail-polishes.available') }}">
|
||||
<i class="fas fa-plus me-1"></i>Verfügbare Lacke
|
||||
</a>
|
||||
</li>
|
||||
<li class="nav-item">
|
||||
<a class="nav-link" href="{{ route("manufacturers.index") }}">
|
||||
<a class="nav-link {{ request()->routeIs('manufacturers.*') ? 'active' : '' }}"
|
||||
href="{{ route('manufacturers.index') }}">
|
||||
<i class="fas fa-industry me-1"></i>Hersteller
|
||||
</a>
|
||||
</li>
|
||||
@if(auth()->user()->isAdmin())
|
||||
<li class="nav-item dropdown">
|
||||
<a class="nav-link dropdown-toggle" href="#" role="button" data-bs-toggle="dropdown">
|
||||
<i class="fas fa-cog me-1"></i>Admin
|
||||
<a class="nav-link dropdown-toggle {{ request()->routeIs('admin.*') || request()->routeIs('nail-polishes.*') ? 'active' : '' }}"
|
||||
href="#" role="button" data-bs-toggle="dropdown">
|
||||
<i class="fas fa-shield-alt me-1"></i>Admin
|
||||
</a>
|
||||
<ul class="dropdown-menu">
|
||||
<li><a class="dropdown-item" href="{{ route("admin.dashboard") }}">Dashboard</a></li>
|
||||
<li><a class="dropdown-item" href="{{ route("admin.users.index") }}">Benutzer</a></li>
|
||||
<li><a class="dropdown-item" href="{{ route("nail-polishes.index") }}">Nagellacke</a></li>
|
||||
<li><a class="dropdown-item" href="{{ route("admin.statistics") }}">Statistiken</a></li>
|
||||
<li><a class="dropdown-item" href="{{ route('admin.dashboard') }}">
|
||||
<i class="fas fa-chart-line me-2"></i>Dashboard</a></li>
|
||||
<li><a class="dropdown-item" href="{{ route('admin.users.index') }}">
|
||||
<i class="fas fa-users me-2"></i>Benutzer</a></li>
|
||||
<li><a class="dropdown-item" href="{{ route('nail-polishes.index') }}">
|
||||
<i class="fas fa-palette me-2"></i>Nagellacke</a></li>
|
||||
<li><a class="dropdown-item" href="{{ route('admin.statistics') }}">
|
||||
<i class="fas fa-chart-bar me-2"></i>Statistiken</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
@endif
|
||||
@endauth
|
||||
</ul>
|
||||
|
||||
|
||||
<ul class="navbar-nav">
|
||||
@guest
|
||||
<li class="nav-item">
|
||||
<a class="nav-link" href="{{ route("login") }}">Anmelden</a>
|
||||
<a class="nav-link" href="{{ route('login') }}">Anmelden</a>
|
||||
</li>
|
||||
@else
|
||||
<li class="nav-item dropdown">
|
||||
<a class="nav-link dropdown-toggle" href="#" role="button" data-bs-toggle="dropdown">
|
||||
<i class="fas fa-user me-1"></i>{{ Auth::user()->name }}
|
||||
<i class="fas fa-user-circle me-1"></i>{{ Auth::user()->name }}
|
||||
@if(auth()->user()->isAdmin())
|
||||
<span class="badge bg-primary ms-1">Admin</span>
|
||||
@endif
|
||||
</a>
|
||||
<ul class="dropdown-menu">
|
||||
<ul class="dropdown-menu dropdown-menu-end">
|
||||
<li>
|
||||
<a class="dropdown-item" href="{{ route("logout") }}"
|
||||
onclick="event.preventDefault(); document.getElementById("logout-form").submit();">
|
||||
<i class="fas fa-sign-out-alt me-1"></i>Abmelden
|
||||
<a class="dropdown-item text-danger" href="{{ route('logout') }}"
|
||||
onclick="event.preventDefault(); document.getElementById('logout-form').submit();">
|
||||
<i class="fas fa-sign-out-alt me-2"></i>Abmelden
|
||||
</a>
|
||||
<form id="logout-form" action="{{ route("logout") }}" method="POST" class="d-none">
|
||||
<form id="logout-form" action="{{ route('logout') }}" method="POST" class="d-none">
|
||||
@csrf
|
||||
</form>
|
||||
</li>
|
||||
@@ -183,46 +508,25 @@
|
||||
</div>
|
||||
</nav>
|
||||
|
||||
<main class="py-4">
|
||||
<main>
|
||||
<div class="container">
|
||||
@if(session("success"))
|
||||
<div class="alert alert-success alert-dismissible fade show" role="alert">
|
||||
<i class="fas fa-check-circle me-2"></i>{{ session("success") }}
|
||||
<button type="button" class="btn-close" data-bs-dismiss="alert"></button>
|
||||
</div>
|
||||
@endif
|
||||
|
||||
@if(session("error"))
|
||||
<div class="alert alert-danger alert-dismissible fade show" role="alert">
|
||||
<i class="fas fa-exclamation-circle me-2"></i>{{ session("error") }}
|
||||
<button type="button" class="btn-close" data-bs-dismiss="alert"></button>
|
||||
</div>
|
||||
@endif
|
||||
|
||||
@yield("content")
|
||||
@foreach(['success' => 'alert-success', 'error' => 'alert-danger', 'warning' => 'alert-warning'] as $key => $cls)
|
||||
@if(session($key))
|
||||
<div class="alert {{ $cls }} alert-dismissible fade show mb-4" role="alert">
|
||||
@if($key === 'success')<i class="fas fa-check-circle me-2"></i>
|
||||
@elseif($key === 'error')<i class="fas fa-exclamation-circle me-2"></i>
|
||||
@else<i class="fas fa-exclamation-triangle me-2"></i>@endif
|
||||
{{ session($key) }}
|
||||
<button type="button" class="btn-close" data-bs-dismiss="alert"></button>
|
||||
</div>
|
||||
@endif
|
||||
@endforeach
|
||||
|
||||
@yield('content')
|
||||
</div>
|
||||
</main>
|
||||
|
||||
<!-- Bootstrap JS -->
|
||||
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/js/bootstrap.bundle.min.js"></script>
|
||||
|
||||
<!-- HTTPS Form Security -->
|
||||
<script>
|
||||
document.addEventListener('DOMContentLoaded', function() {
|
||||
// Alle Formulare mit data-https="true" auf HTTPS umleiten
|
||||
const forms = document.querySelectorAll('form[data-https="true"]');
|
||||
forms.forEach(function(form) {
|
||||
form.addEventListener('submit', function(e) {
|
||||
const currentUrl = window.location.href;
|
||||
if (currentUrl.startsWith('http://')) {
|
||||
const httpsUrl = currentUrl.replace('http://', 'https://');
|
||||
form.action = form.action.replace('http://', 'https://');
|
||||
}
|
||||
});
|
||||
});
|
||||
});
|
||||
</script>
|
||||
|
||||
@yield("scripts")
|
||||
@yield('scripts')
|
||||
</body>
|
||||
</html>
|
||||
</html>
|
||||
|
||||
@@ -1,124 +1,112 @@
|
||||
@extends('layouts.app')
|
||||
|
||||
@section('title', 'Verfügbare Lacke - NeoNail DB')
|
||||
@section('title', 'Verfügbare Lacke – NeoNail DB')
|
||||
|
||||
@section('content')
|
||||
<div class="container">
|
||||
<div class="row mb-4">
|
||||
<div class="col-md-8">
|
||||
<h2>
|
||||
<i class="fas fa-search me-2"></i>Verfügbare NeoNail-Lacke
|
||||
</h2>
|
||||
<p class="text-muted">Lacke, die Sie noch nicht in Ihrer Sammlung haben</p>
|
||||
</div>
|
||||
<div class="col-md-4 text-end">
|
||||
<div class="d-flex gap-2 justify-content-end">
|
||||
<a href="{{ route('user-nail-polishes.create') }}" class="btn btn-success">
|
||||
<i class="fas fa-plus me-2"></i>Neuen Lack hinzufügen
|
||||
|
||||
{{-- Page Hero --}}
|
||||
<div class="page-hero d-flex flex-column flex-md-row align-items-md-center justify-content-md-between gap-3">
|
||||
<div>
|
||||
<h1><i class="fas fa-search me-2" style="font-size:1.5rem;vertical-align:middle;opacity:.9;"></i>Verfügbare Lacke</h1>
|
||||
<p>Lacke aus dem Katalog, die noch nicht in Ihrer Sammlung sind</p>
|
||||
</div>
|
||||
<div class="d-flex gap-2 flex-wrap">
|
||||
<a href="{{ route('user-nail-polishes.create') }}" class="btn btn-success">
|
||||
<i class="fas fa-plus me-2"></i>Neuen Lack
|
||||
</a>
|
||||
<a href="{{ route('user-nail-polishes.index') }}" class="btn btn-glass">
|
||||
<i class="fas fa-palette me-2"></i>Meine Sammlung
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
{{-- Search + Count --}}
|
||||
<div class="d-flex align-items-center gap-3 mb-4">
|
||||
<div class="search-wrap flex-grow-1">
|
||||
<form method="GET" action="{{ route('user-nail-polishes.available') }}">
|
||||
<i class="fas fa-search search-icon"></i>
|
||||
<input type="text" name="search" class="form-control search-input"
|
||||
placeholder="Nach Name oder Nummer suchen…"
|
||||
value="{{ $search }}" autocomplete="off">
|
||||
@if($search)
|
||||
<a href="{{ route('user-nail-polishes.available') }}" class="search-clear" title="Zurücksetzen">
|
||||
<i class="fas fa-times"></i>
|
||||
</a>
|
||||
<a href="{{ route('user-nail-polishes.index') }}" class="btn btn-primary">
|
||||
<i class="fas fa-palette me-2"></i>Meine Sammlung
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
@endif
|
||||
<button type="submit" class="search-submit">Suchen</button>
|
||||
</form>
|
||||
</div>
|
||||
<span class="count-chip">
|
||||
<i class="fas fa-boxes"></i>
|
||||
{{ $nailPolishes->total() }} verfügbar
|
||||
</span>
|
||||
</div>
|
||||
|
||||
<!-- Info-Box -->
|
||||
<div class="alert alert-info mb-4">
|
||||
<i class="fas fa-info-circle me-2"></i>
|
||||
<strong>Hinweis:</strong> Diese Lacke sind Teil des gemeinsamen Hauptkatalogs und können nicht gelöscht werden.
|
||||
Sie können sie nur zu Ihrer persönlichen Sammlung hinzufügen oder entfernen.
|
||||
</div>
|
||||
{{-- Grid --}}
|
||||
@if($nailPolishes->count() > 0)
|
||||
<div class="row g-3">
|
||||
@foreach($nailPolishes as $nailPolish)
|
||||
<div class="col-6 col-md-4 col-lg-3">
|
||||
<div class="card np-card h-100">
|
||||
@if($nailPolish->image_path)
|
||||
<img src="{{ Storage::url($nailPolish->image_path) }}"
|
||||
class="np-img" alt="{{ $nailPolish->name }}" loading="lazy">
|
||||
@else
|
||||
<div class="np-placeholder">
|
||||
<i class="fas fa-palette"></i>
|
||||
</div>
|
||||
@endif
|
||||
|
||||
<!-- Suchleiste -->
|
||||
<div class="row mb-4">
|
||||
<div class="col-md-6">
|
||||
<form method="GET" action="{{ route('user-nail-polishes.available') }}" class="d-flex">
|
||||
<input type="text" name="search" class="form-control me-2"
|
||||
placeholder="Nach Name oder Nummer suchen..."
|
||||
value="{{ $search }}">
|
||||
<button type="submit" class="btn btn-outline-primary">
|
||||
<i class="fas fa-search"></i>
|
||||
</button>
|
||||
@if($search)
|
||||
<a href="{{ route('user-nail-polishes.available') }}" class="btn btn-outline-secondary ms-2">
|
||||
<i class="fas fa-times"></i>
|
||||
</a>
|
||||
@endif
|
||||
</form>
|
||||
</div>
|
||||
<div class="col-md-6 text-end">
|
||||
<span class="text-muted">
|
||||
{{ $nailPolishes->total() }} verfügbare Lack{{ $nailPolishes->total() != 1 ? 'e' : '' }}
|
||||
</span>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@if($nailPolishes->count() > 0)
|
||||
<div class="row">
|
||||
@foreach($nailPolishes as $nailPolish)
|
||||
<div class="col-md-3 col-sm-6 mb-4">
|
||||
<div class="card h-100 nail-polish-card">
|
||||
@if($nailPolish->image_path)
|
||||
<img src="{{ Storage::url($nailPolish->image_path) }}"
|
||||
class="card-img-top nail-polish-image"
|
||||
alt="{{ $nailPolish->name }}"
|
||||
loading="lazy">
|
||||
@else
|
||||
<div class="card-img-top nail-polish-placeholder d-flex align-items-center justify-content-center">
|
||||
<i class="fas fa-palette fa-3x text-muted"></i>
|
||||
</div>
|
||||
@endif
|
||||
|
||||
<div class="card-body d-flex flex-column">
|
||||
<h6 class="card-title mb-1">{{ $nailPolish->name }}</h6>
|
||||
<p class="card-text text-muted mb-2">Nr. {{ $nailPolish->number }}</p>
|
||||
|
||||
<div class="mt-auto">
|
||||
<form method="POST" action="{{ route('user-nail-polishes.add', $nailPolish) }}"
|
||||
class="d-inline">
|
||||
@csrf
|
||||
<button type="submit" class="btn btn-success btn-sm w-100">
|
||||
<i class="fas fa-plus me-2"></i>Zur Sammlung hinzufügen
|
||||
</button>
|
||||
</form>
|
||||
</div>
|
||||
<div class="card-body d-flex flex-column">
|
||||
<div class="flex-grow-1">
|
||||
<div class="np-name">{{ $nailPolish->name }}</div>
|
||||
<div class="np-number">Nr. {{ $nailPolish->number }}</div>
|
||||
@if($nailPolish->manufacturer)
|
||||
<span class="np-brand">{{ $nailPolish->manufacturer->name }}</span>
|
||||
@endif
|
||||
</div>
|
||||
<div class="mt-3">
|
||||
<form method="POST" action="{{ route('user-nail-polishes.add', $nailPolish) }}">
|
||||
@csrf
|
||||
<button type="submit" class="btn btn-success btn-sm w-100">
|
||||
<i class="fas fa-plus me-1"></i>Zur Sammlung
|
||||
</button>
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
@endforeach
|
||||
</div>
|
||||
</div>
|
||||
@endforeach
|
||||
</div>
|
||||
|
||||
<!-- Pagination -->
|
||||
@if($nailPolishes->hasPages())
|
||||
<div class="row">
|
||||
<div class="col-12">
|
||||
<nav aria-label="Seitennavigation">
|
||||
{{ $nailPolishes->appends(['search' => $search])->links() }}
|
||||
</nav>
|
||||
</div>
|
||||
</div>
|
||||
@endif
|
||||
@else
|
||||
<div class="text-center py-5">
|
||||
<i class="fas fa-check-circle fa-4x text-success mb-3"></i>
|
||||
<h4 class="text-success">Glückwunsch!</h4>
|
||||
<p class="text-muted mb-4">
|
||||
@if($search)
|
||||
Keine verfügbaren Lacke gefunden, die "{{ $search }}" entsprechen.
|
||||
@else
|
||||
Sie haben bereits alle verfügbaren NeoNail-Lacke in Ihrer Sammlung!
|
||||
@endif
|
||||
</p>
|
||||
<div class="d-flex gap-2 justify-content-center">
|
||||
<a href="{{ route('user-nail-polishes.create') }}" class="btn btn-success">
|
||||
<i class="fas fa-plus me-2"></i>Neuen Lack hinzufügen
|
||||
</a>
|
||||
<a href="{{ route('user-nail-polishes.index') }}" class="btn btn-primary">
|
||||
<i class="fas fa-palette me-2"></i>Meine Sammlung anzeigen
|
||||
</a>
|
||||
</div>
|
||||
@if($nailPolishes->hasPages())
|
||||
<div class="d-flex justify-content-center mt-5">
|
||||
{{ $nailPolishes->appends(['search' => $search])->links() }}
|
||||
</div>
|
||||
@endif
|
||||
</div>
|
||||
|
||||
@else
|
||||
<div class="empty-state">
|
||||
<div class="empty-icon">
|
||||
<i class="fas fa-check-circle"></i>
|
||||
</div>
|
||||
<h4>{{ $search ? 'Keine Ergebnisse' : 'Alles in Ihrer Sammlung!' }}</h4>
|
||||
<p>
|
||||
@if($search)
|
||||
Keine Lacke gefunden, die „{{ $search }}" entsprechen.
|
||||
@else
|
||||
Sie haben bereits alle verfügbaren Lacke in Ihrer Sammlung.
|
||||
@endif
|
||||
</p>
|
||||
<div class="d-flex gap-2 justify-content-center flex-wrap">
|
||||
<a href="{{ route('user-nail-polishes.create') }}" class="btn btn-success">
|
||||
<i class="fas fa-plus me-2"></i>Neuen Lack hinzufügen
|
||||
</a>
|
||||
<a href="{{ route('user-nail-polishes.index') }}" class="btn btn-glass">
|
||||
<i class="fas fa-palette me-2"></i>Meine Sammlung
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
@endif
|
||||
|
||||
@endsection
|
||||
|
||||
@@ -1,175 +1,232 @@
|
||||
@extends('layouts.app')
|
||||
|
||||
@section('title', 'Neuen Lack hinzufügen - NeoNail DB')
|
||||
@section('title', 'Neuen Lack hinzufügen – NeoNail DB')
|
||||
|
||||
@section('content')
|
||||
<div class="row justify-content-center">
|
||||
<div class="col-md-8">
|
||||
<div class="card">
|
||||
<div class="card-header">
|
||||
<h4 class="mb-0">
|
||||
<i class="fas fa-plus me-2"></i>Neuen NeoNail-Lack hinzufügen
|
||||
</h4>
|
||||
</div>
|
||||
<div class="card-body">
|
||||
<div class="alert alert-info">
|
||||
<i class="fas fa-info-circle me-2"></i>
|
||||
<strong>Wichtig:</strong> Der neue Lack wird automatisch zum Hauptkatalog hinzugefügt und steht dann allen Benutzern zur Verfügung.
|
||||
Er wird auch automatisch zu Ihrer Sammlung hinzugefügt.
|
||||
</div>
|
||||
<div class="col-md-8 col-lg-7">
|
||||
|
||||
@if ($errors->any())
|
||||
<div class="alert alert-danger">
|
||||
<ul class="mb-0">
|
||||
@foreach ($errors->all() as $error)
|
||||
<div class="page-hero mb-4">
|
||||
<h1><i class="fas fa-plus me-2" style="font-size:1.4rem;vertical-align:middle;opacity:.9;"></i>Neuen Lack hinzufügen</h1>
|
||||
<p>Der Lack wird zum Katalog hinzugefügt und automatisch in Ihre Sammlung aufgenommen.</p>
|
||||
</div>
|
||||
|
||||
<div class="card">
|
||||
<div class="card-body p-4">
|
||||
|
||||
@if($errors->any())
|
||||
<div class="alert alert-danger mb-4">
|
||||
<i class="fas fa-exclamation-circle me-2"></i>
|
||||
<strong>Bitte korrigieren Sie folgende Fehler:</strong>
|
||||
<ul class="mb-0 mt-2 ps-3">
|
||||
@foreach($errors->all() as $error)
|
||||
<li>{{ $error }}</li>
|
||||
@endforeach
|
||||
</ul>
|
||||
</div>
|
||||
@endif
|
||||
|
||||
<form method="POST" action="https://neonail.vogt.de.com/create-nail-polish" enctype="multipart/form-data">
|
||||
<form method="POST" action="{{ route('user-nail-polishes.store') }}" enctype="multipart/form-data">
|
||||
@csrf
|
||||
|
||||
<div class="row">
|
||||
<div class="col-md-6">
|
||||
<div class="mb-3">
|
||||
<label for="name" class="form-label">Name des Lackes *</label>
|
||||
<input type="text" class="form-control @error('name') is-invalid @enderror"
|
||||
id="name" name="name" value="{{ old('name') }}"
|
||||
placeholder="z.B. Classic Red" required>
|
||||
@error('name')
|
||||
<div class="invalid-feedback">{{ $message }}</div>
|
||||
@enderror
|
||||
</div>
|
||||
<div class="row g-3 mb-3">
|
||||
<div class="col-md-7">
|
||||
<label for="name" class="form-label">Name des Lackes *</label>
|
||||
<input type="text" class="form-control @error('name') is-invalid @enderror"
|
||||
id="name" name="name" value="{{ old('name') }}"
|
||||
placeholder="z.B. Classic Red" required>
|
||||
@error('name')<div class="invalid-feedback">{{ $message }}</div>@enderror
|
||||
</div>
|
||||
<div class="col-md-6">
|
||||
<div class="mb-3">
|
||||
<label for="number" class="form-label">Nummer des Lackes *</label>
|
||||
<input type="text" class="form-control @error('number') is-invalid @enderror"
|
||||
id="number" name="number" value="{{ old('number') }}"
|
||||
placeholder="z.B. 001" required>
|
||||
@error('number')
|
||||
<div class="invalid-feedback">{{ $message }}</div>
|
||||
@enderror
|
||||
</div>
|
||||
<div class="col-md-5">
|
||||
<label for="number" class="form-label">Nummer *</label>
|
||||
<input type="text" class="form-control @error('number') is-invalid @enderror"
|
||||
id="number" name="number" value="{{ old('number') }}"
|
||||
placeholder="z.B. 001" required>
|
||||
@error('number')<div class="invalid-feedback">{{ $message }}</div>@enderror
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="row">
|
||||
<div class="row g-3 mb-4">
|
||||
<div class="col-md-6">
|
||||
<div class="mb-3">
|
||||
<label for="manufacturer_id" class="form-label">Hersteller *</label>
|
||||
<select class="form-control @error('manufacturer_id') is-invalid @enderror"
|
||||
id="manufacturer_id" name="manufacturer_id" required>
|
||||
<option value="">Hersteller auswählen...</option>
|
||||
@foreach(\App\Models\Manufacturer::orderBy('name')->get() as $manufacturer)
|
||||
<option value="{{ $manufacturer->id }}" {{ old('manufacturer_id') == $manufacturer->id ? 'selected' : '' }}>
|
||||
{{ $manufacturer->name }}
|
||||
</option>
|
||||
@endforeach
|
||||
</select>
|
||||
@error('manufacturer_id')
|
||||
<div class="invalid-feedback">{{ $message }}</div>
|
||||
@enderror
|
||||
<div class="form-text">
|
||||
<a href="https://neonail.vogt.de.com/manufacturers/create" target="_blank" class="text-decoration-none">
|
||||
<i class="fas fa-plus"></i> Neuen Hersteller erstellen
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
<label for="manufacturer_id" class="form-label">Hersteller auswählen</label>
|
||||
<select class="form-select @error('manufacturer_id') is-invalid @enderror"
|
||||
id="manufacturer_id" name="manufacturer_id">
|
||||
<option value="">— Hersteller wählen —</option>
|
||||
@foreach(\App\Models\Manufacturer::orderBy('name')->get() as $m)
|
||||
<option value="{{ $m->id }}" {{ old('manufacturer_id') == $m->id ? 'selected' : '' }}>
|
||||
{{ $m->name }}
|
||||
</option>
|
||||
@endforeach
|
||||
</select>
|
||||
@error('manufacturer_id')<div class="invalid-feedback">{{ $message }}</div>@enderror
|
||||
</div>
|
||||
<div class="col-md-6">
|
||||
<div class="mb-3">
|
||||
<label for="new_manufacturer" class="form-label">Oder neuen Hersteller erstellen</label>
|
||||
<input type="text" class="form-control"
|
||||
id="new_manufacturer" name="new_manufacturer"
|
||||
placeholder="Name des neuen Herstellers">
|
||||
<div class="form-text">
|
||||
Falls der Hersteller noch nicht existiert, können Sie ihn hier erstellen.
|
||||
</div>
|
||||
</div>
|
||||
<label for="new_manufacturer" class="form-label">Oder neuen Hersteller anlegen</label>
|
||||
<input type="text" class="form-control @error('new_manufacturer') is-invalid @enderror"
|
||||
id="new_manufacturer" name="new_manufacturer"
|
||||
value="{{ old('new_manufacturer') }}"
|
||||
placeholder="Name des neuen Herstellers">
|
||||
@error('new_manufacturer')<div class="invalid-feedback">{{ $message }}</div>@enderror
|
||||
<div class="form-text">Wird automatisch angelegt, falls noch nicht vorhanden.</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="mb-3">
|
||||
<label for="image" class="form-label">Bild des Lackes (optional)</label>
|
||||
<input type="file" class="form-control @error('image') is-invalid @enderror"
|
||||
id="image" name="image" accept="image/*">
|
||||
<div class="form-text">
|
||||
<i class="fas fa-camera me-1"></i>
|
||||
Sie können ein Bild mit der Handykamera aufnehmen oder eine Datei auswählen.
|
||||
Maximale Größe: 10MB. Das Bild wird automatisch optimiert.
|
||||
{{-- Image Upload --}}
|
||||
<div class="mb-4">
|
||||
<label class="form-label">Foto (optional)</label>
|
||||
|
||||
{{-- Tab-Umschalter --}}
|
||||
<div class="d-flex gap-2 mb-3">
|
||||
<button type="button" id="tab-file" onclick="switchTab('file')"
|
||||
style="padding:6px 16px; border-radius:50px; font-size:.82rem; font-weight:600; cursor:pointer; transition:.18s;
|
||||
background:#7c3aed; color:#fff; border:none;">
|
||||
<i class="fas fa-upload me-1"></i>Datei
|
||||
</button>
|
||||
<button type="button" id="tab-url" onclick="switchTab('url')"
|
||||
style="padding:6px 16px; border-radius:50px; font-size:.82rem; font-weight:600; cursor:pointer; transition:.18s;
|
||||
background:#f3f4f6; color:#6b7280; border:none;">
|
||||
<i class="fas fa-link me-1"></i>URL
|
||||
</button>
|
||||
</div>
|
||||
|
||||
{{-- Panel: Datei --}}
|
||||
<div id="panel-file">
|
||||
<div id="drop-zone"
|
||||
style="border: 2px dashed #e5e7eb; border-radius: 13px; padding: 28px 20px; text-align: center; cursor: pointer; transition: border-color .2s, background .2s;"
|
||||
onclick="document.getElementById('image').click()"
|
||||
ondragover="event.preventDefault(); this.style.borderColor='#7c3aed'; this.style.background='#f5f3ff';"
|
||||
ondragleave="this.style.borderColor='#e5e7eb'; this.style.background='';"
|
||||
ondrop="handleDrop(event)">
|
||||
<div id="preview-wrap" class="d-none mb-3">
|
||||
<img id="preview-img" src="" alt="Vorschau"
|
||||
style="max-height:160px; border-radius:10px; object-fit:cover;">
|
||||
</div>
|
||||
<div id="drop-label">
|
||||
<i class="fas fa-camera fa-2x mb-2 d-block" style="color:#d1d5db;"></i>
|
||||
<span style="font-size:.88rem; font-weight:600; color:#6b7280;">Klicken oder Foto aufnehmen</span><br>
|
||||
<span style="font-size:.76rem; color:#9ca3af;">JPG, PNG, GIF · Max. 10 MB</span>
|
||||
</div>
|
||||
</div>
|
||||
<input type="file" class="d-none @error('image') is-invalid @enderror"
|
||||
id="image" name="image" accept="image/*">
|
||||
@error('image')<div class="invalid-feedback d-block mt-1">{{ $message }}</div>@enderror
|
||||
</div>
|
||||
|
||||
{{-- Panel: URL --}}
|
||||
<div id="panel-url" style="display:none;">
|
||||
<input type="url" id="image_url" name="image_url"
|
||||
class="form-control @error('image_url') is-invalid @enderror"
|
||||
placeholder="https://example.com/bild.jpg"
|
||||
value="{{ old('image_url') }}"
|
||||
oninput="previewUrl(this.value)">
|
||||
@error('image_url')<div class="invalid-feedback">{{ $message }}</div>@enderror
|
||||
<div class="form-text mb-2">Das Bild wird vom Server heruntergeladen und lokal gespeichert.</div>
|
||||
<div id="url-preview-wrap" style="display:none; margin-top:10px;">
|
||||
<img id="url-preview-img" src="" alt="Vorschau"
|
||||
style="max-height:160px; border-radius:10px; object-fit:cover; border:2px solid #e5e7eb;"
|
||||
onerror="this.parentElement.style.display='none'">
|
||||
</div>
|
||||
</div>
|
||||
@error('image')
|
||||
<div class="invalid-feedback">{{ $message }}</div>
|
||||
@enderror
|
||||
</div>
|
||||
|
||||
<div class="d-flex gap-2">
|
||||
<button type="submit" class="btn btn-primary flex-fill">
|
||||
<i class="fas fa-save me-2"></i>Lack erstellen & zur Sammlung hinzufügen
|
||||
<i class="fas fa-plus me-2"></i>Lack erstellen & hinzufügen
|
||||
</button>
|
||||
<a href="{{ route('user-nail-polishes.index') }}" class="btn btn-outline-secondary">
|
||||
<i class="fas fa-times me-2"></i>Abbrechen
|
||||
Abbrechen
|
||||
</a>
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- Hinweise -->
|
||||
<div class="card mt-4">
|
||||
<div class="card-header">
|
||||
<h5 class="mb-0">
|
||||
<i class="fas fa-lightbulb me-2"></i>Hinweise
|
||||
</h5>
|
||||
</div>
|
||||
<div class="card-body">
|
||||
<ul class="mb-0">
|
||||
<li>Der Lack wird automatisch zum Hauptkatalog hinzugefügt</li>
|
||||
<li>Andere Benutzer können den Lack dann zu ihrer Sammlung hinzufügen</li>
|
||||
<li>Das Bild wird automatisch auf 400x400 Pixel optimiert</li>
|
||||
<li>Sie können den Lack später in Ihren Einstellungen bearbeiten</li>
|
||||
<li>Neue Hersteller werden automatisch erstellt und stehen allen zur Verfügung</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
@endsection
|
||||
|
||||
@section('scripts')
|
||||
<script>
|
||||
document.addEventListener('DOMContentLoaded', function() {
|
||||
const manufacturerSelect = document.getElementById('manufacturer_id');
|
||||
const newManufacturerInput = document.getElementById('new_manufacturer');
|
||||
|
||||
// Wenn ein Hersteller ausgewählt wird, leere das neue Hersteller Feld
|
||||
manufacturerSelect.addEventListener('change', function() {
|
||||
if (this.value) {
|
||||
newManufacturerInput.value = '';
|
||||
newManufacturerInput.disabled = true;
|
||||
} else {
|
||||
newManufacturerInput.disabled = false;
|
||||
}
|
||||
document.addEventListener('DOMContentLoaded', function () {
|
||||
const mSel = document.getElementById('manufacturer_id');
|
||||
const mNew = document.getElementById('new_manufacturer');
|
||||
const img = document.getElementById('image');
|
||||
const prev = document.getElementById('preview-img');
|
||||
const wrap = document.getElementById('preview-wrap');
|
||||
const lbl = document.getElementById('drop-label');
|
||||
const zone = document.getElementById('drop-zone');
|
||||
|
||||
// Hersteller-Toggle
|
||||
mSel.addEventListener('change', () => {
|
||||
if (mSel.value) { mNew.value = ''; mNew.disabled = true; }
|
||||
else mNew.disabled = false;
|
||||
});
|
||||
|
||||
// Wenn ein neuer Hersteller eingegeben wird, leere die Auswahl
|
||||
newManufacturerInput.addEventListener('input', function() {
|
||||
if (this.value.trim()) {
|
||||
manufacturerSelect.value = '';
|
||||
manufacturerSelect.disabled = true;
|
||||
} else {
|
||||
manufacturerSelect.disabled = false;
|
||||
}
|
||||
mNew.addEventListener('input', () => {
|
||||
if (mNew.value.trim()) { mSel.value = ''; mSel.disabled = true; }
|
||||
else mSel.disabled = false;
|
||||
});
|
||||
|
||||
// Initial state
|
||||
if (newManufacturerInput.value.trim()) {
|
||||
manufacturerSelect.disabled = true;
|
||||
}
|
||||
if (manufacturerSelect.value) {
|
||||
newManufacturerInput.disabled = true;
|
||||
if (mNew.value.trim()) mSel.disabled = true;
|
||||
if (mSel.value) mNew.disabled = true;
|
||||
|
||||
// Datei-Vorschau
|
||||
function showFilePreview(file) {
|
||||
const reader = new FileReader();
|
||||
reader.onload = e => {
|
||||
prev.src = e.target.result;
|
||||
wrap.classList.remove('d-none');
|
||||
lbl.style.display = 'none';
|
||||
zone.style.borderColor = '#7c3aed';
|
||||
zone.style.background = '#f5f3ff';
|
||||
};
|
||||
reader.readAsDataURL(file);
|
||||
}
|
||||
img.addEventListener('change', function () {
|
||||
if (this.files && this.files[0]) showFilePreview(this.files[0]);
|
||||
});
|
||||
window.handleDrop = function (e) {
|
||||
e.preventDefault();
|
||||
zone.style.borderColor = '#e5e7eb';
|
||||
zone.style.background = '';
|
||||
if (e.dataTransfer.files.length) {
|
||||
const dt = new DataTransfer();
|
||||
dt.items.add(e.dataTransfer.files[0]);
|
||||
img.files = dt.files;
|
||||
showFilePreview(e.dataTransfer.files[0]);
|
||||
}
|
||||
};
|
||||
|
||||
// Tab-Umschalter
|
||||
window.switchTab = function (tab) {
|
||||
const isFile = tab === 'file';
|
||||
document.getElementById('panel-file').style.display = isFile ? '' : 'none';
|
||||
document.getElementById('panel-url').style.display = isFile ? 'none' : '';
|
||||
document.getElementById('tab-file').style.background = isFile ? '#7c3aed' : '#f3f4f6';
|
||||
document.getElementById('tab-file').style.color = isFile ? '#fff' : '#6b7280';
|
||||
document.getElementById('tab-url').style.background = isFile ? '#f3f4f6' : '#7c3aed';
|
||||
document.getElementById('tab-url').style.color = isFile ? '#6b7280' : '#fff';
|
||||
// Felder des inaktiven Tabs leeren
|
||||
if (isFile) { document.getElementById('image_url').value = ''; document.getElementById('url-preview-wrap').style.display = 'none'; }
|
||||
else { img.value = ''; wrap.classList.add('d-none'); lbl.style.display = ''; zone.style.borderColor = '#e5e7eb'; zone.style.background = ''; }
|
||||
};
|
||||
|
||||
// URL-Vorschau
|
||||
let urlTimer;
|
||||
window.previewUrl = function (val) {
|
||||
clearTimeout(urlTimer);
|
||||
const pw = document.getElementById('url-preview-wrap');
|
||||
const pi = document.getElementById('url-preview-img');
|
||||
if (!val.trim()) { pw.style.display = 'none'; return; }
|
||||
urlTimer = setTimeout(() => {
|
||||
pi.src = val;
|
||||
pw.style.display = '';
|
||||
}, 600);
|
||||
};
|
||||
|
||||
// Ggf. URL-Tab vorauswählen bei Validation-Fehler
|
||||
@if(old('image_url'))
|
||||
switchTab('url');
|
||||
previewUrl('{{ old('image_url') }}');
|
||||
@endif
|
||||
});
|
||||
</script>
|
||||
@endsection
|
||||
|
||||
@@ -1,123 +1,113 @@
|
||||
@extends('layouts.app')
|
||||
|
||||
@section('title', 'Meine Sammlung - NeoNail DB')
|
||||
@section('title', 'Meine Sammlung – NeoNail DB')
|
||||
|
||||
@section('content')
|
||||
<div class="container">
|
||||
<div class="row mb-4">
|
||||
<div class="col-md-8">
|
||||
<h2>
|
||||
<i class="fas fa-palette me-2"></i>Meine NeoNail-Sammlung
|
||||
</h2>
|
||||
<p class="text-muted">Verwalten Sie Ihre persönliche Nagellack-Sammlung</p>
|
||||
</div>
|
||||
<div class="col-md-4 text-end">
|
||||
<div class="d-flex gap-2 justify-content-end">
|
||||
<a href="{{ route('user-nail-polishes.create') }}" class="btn btn-success">
|
||||
<i class="fas fa-plus me-2"></i>Neuen Lack hinzufügen
|
||||
</a>
|
||||
<a href="{{ route('user-nail-polishes.available') }}" class="btn btn-primary">
|
||||
<i class="fas fa-search me-2"></i>Verfügbare Lacke
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- Suchleiste -->
|
||||
<div class="row mb-4">
|
||||
<div class="col-md-6">
|
||||
<form method="GET" action="{{ route('user-nail-polishes.index') }}" class="d-flex">
|
||||
<input type="text" name="search" class="form-control me-2"
|
||||
placeholder="Nach Name oder Nummer suchen..."
|
||||
value="{{ $search }}">
|
||||
<button type="submit" class="btn btn-outline-primary">
|
||||
<i class="fas fa-search"></i>
|
||||
</button>
|
||||
@if($search)
|
||||
<a href="{{ route('user-nail-polishes.index') }}" class="btn btn-outline-secondary ms-2">
|
||||
<i class="fas fa-times"></i>
|
||||
</a>
|
||||
@endif
|
||||
</form>
|
||||
</div>
|
||||
<div class="col-md-6 text-end">
|
||||
<span class="text-muted">
|
||||
{{ $nailPolishes->total() }} Lack{{ $nailPolishes->total() != 1 ? 'e' : '' }} in Ihrer Sammlung
|
||||
</span>
|
||||
</div>
|
||||
{{-- Page Hero --}}
|
||||
<div class="page-hero d-flex flex-column flex-md-row align-items-md-center justify-content-md-between gap-3">
|
||||
<div>
|
||||
<h1>💅 Meine Sammlung</h1>
|
||||
<p>Verwalten Sie Ihre persönliche Nagellack-Sammlung</p>
|
||||
</div>
|
||||
<div class="d-flex gap-2 flex-wrap">
|
||||
<a href="{{ route('user-nail-polishes.create') }}" class="btn btn-success">
|
||||
<i class="fas fa-plus me-2"></i>Neuen Lack
|
||||
</a>
|
||||
<a href="{{ route('user-nail-polishes.available') }}" class="btn btn-glass">
|
||||
<i class="fas fa-search me-2"></i>Verfügbare Lacke
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@if($nailPolishes->count() > 0)
|
||||
<div class="row">
|
||||
@foreach($nailPolishes as $nailPolish)
|
||||
<div class="col-md-3 col-sm-6 mb-4">
|
||||
<div class="card h-100 nail-polish-card">
|
||||
@if($nailPolish->image_path)
|
||||
<img src="{{ Storage::url($nailPolish->image_path) }}"
|
||||
class="card-img-top nail-polish-image"
|
||||
alt="{{ $nailPolish->name }}"
|
||||
loading="lazy">
|
||||
@else
|
||||
<div class="card-img-top nail-polish-placeholder d-flex align-items-center justify-content-center">
|
||||
<i class="fas fa-palette fa-3x text-muted"></i>
|
||||
</div>
|
||||
@endif
|
||||
|
||||
<div class="card-body d-flex flex-column">
|
||||
<h6 class="card-title mb-1">{{ $nailPolish->name }}</h6>
|
||||
<p class="card-text text-muted mb-2">Nr. {{ $nailPolish->number }}</p>
|
||||
{{-- Search + Count --}}
|
||||
<div class="d-flex align-items-center gap-3 mb-4">
|
||||
<div class="search-wrap flex-grow-1">
|
||||
<form method="GET" action="{{ route('user-nail-polishes.index') }}">
|
||||
<i class="fas fa-search search-icon"></i>
|
||||
<input type="text" name="search" class="form-control search-input"
|
||||
placeholder="Nach Name oder Nummer suchen…"
|
||||
value="{{ $search }}" autocomplete="off">
|
||||
@if($search)
|
||||
<a href="{{ route('user-nail-polishes.index') }}" class="search-clear" title="Zurücksetzen">
|
||||
<i class="fas fa-times"></i>
|
||||
</a>
|
||||
@endif
|
||||
<button type="submit" class="search-submit">Suchen</button>
|
||||
</form>
|
||||
</div>
|
||||
<span class="count-chip">
|
||||
<i class="fas fa-layer-group"></i>
|
||||
{{ $nailPolishes->total() }} {{ $nailPolishes->total() === 1 ? 'Lack' : 'Lacke' }}
|
||||
</span>
|
||||
</div>
|
||||
|
||||
{{-- Grid --}}
|
||||
@if($nailPolishes->count() > 0)
|
||||
<div class="row g-3">
|
||||
@foreach($nailPolishes as $nailPolish)
|
||||
<div class="col-6 col-md-4 col-lg-3">
|
||||
<div class="card np-card h-100">
|
||||
@if($nailPolish->image_path)
|
||||
<img src="{{ Storage::url($nailPolish->image_path) }}"
|
||||
class="np-img" alt="{{ $nailPolish->name }}" loading="lazy">
|
||||
@else
|
||||
<div class="np-placeholder">
|
||||
<i class="fas fa-palette"></i>
|
||||
</div>
|
||||
@endif
|
||||
|
||||
<div class="card-body d-flex flex-column">
|
||||
<div class="flex-grow-1">
|
||||
<div class="np-name">{{ $nailPolish->name }}</div>
|
||||
<div class="np-number">Nr. {{ $nailPolish->number }}</div>
|
||||
@if($nailPolish->manufacturer)
|
||||
<p class="card-text text-muted mb-2">
|
||||
<small><i class="fas fa-industry"></i> {{ $nailPolish->manufacturer->name }}</small>
|
||||
</p>
|
||||
<span class="np-brand">{{ $nailPolish->manufacturer->name }}</span>
|
||||
@endif
|
||||
|
||||
<div class="mt-auto">
|
||||
<form method="POST" action="https://neonail.vogt.de.com/remove-from-collection/{{ $nailPolish->id }}"
|
||||
class="d-inline"
|
||||
onsubmit="return confirm('Möchten Sie diesen Lack wirklich aus Ihrer Sammlung entfernen?')">
|
||||
@csrf
|
||||
<button type="submit" class="btn btn-outline-danger btn-sm w-100">
|
||||
<i class="fas fa-trash me-2"></i>Entfernen
|
||||
</button>
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
<div class="mt-3">
|
||||
<form method="POST" action="{{ route('user-nail-polishes.remove', $nailPolish) }}"
|
||||
onsubmit="return confirm('Lack aus der Sammlung entfernen?')">
|
||||
@csrf
|
||||
<button type="submit" class="btn btn-outline-danger btn-sm w-100">
|
||||
<i class="fas fa-trash-alt me-1"></i>Entfernen
|
||||
</button>
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
@endforeach
|
||||
</div>
|
||||
</div>
|
||||
@endforeach
|
||||
</div>
|
||||
|
||||
<!-- Pagination -->
|
||||
@if($nailPolishes->hasPages())
|
||||
<div class="row">
|
||||
<div class="col-12">
|
||||
<nav aria-label="Seitennavigation">
|
||||
{{ $nailPolishes->appends(['search' => $search])->links() }}
|
||||
</nav>
|
||||
</div>
|
||||
</div>
|
||||
@endif
|
||||
@else
|
||||
<div class="text-center py-5">
|
||||
<i class="fas fa-palette fa-4x text-muted mb-3"></i>
|
||||
<h4 class="text-muted">Ihre Sammlung ist noch leer</h4>
|
||||
<p class="text-muted mb-4">
|
||||
@if($search)
|
||||
Keine Lacke gefunden, die "{{ $search }}" entsprechen.
|
||||
@else
|
||||
Fügen Sie Ihren ersten NeoNail-Lack hinzu!
|
||||
@endif
|
||||
</p>
|
||||
<div class="d-flex gap-2 justify-content-center">
|
||||
<a href="{{ route('user-nail-polishes.create') }}" class="btn btn-success">
|
||||
<i class="fas fa-plus me-2"></i>Ersten Lack hinzufügen
|
||||
</a>
|
||||
<a href="{{ route('user-nail-polishes.available') }}" class="btn btn-primary">
|
||||
<i class="fas fa-search me-2"></i>Verfügbare Lacke durchsuchen
|
||||
</a>
|
||||
</div>
|
||||
@if($nailPolishes->hasPages())
|
||||
<div class="d-flex justify-content-center mt-5">
|
||||
{{ $nailPolishes->appends(['search' => $search])->links() }}
|
||||
</div>
|
||||
@endif
|
||||
</div>
|
||||
|
||||
@else
|
||||
<div class="empty-state">
|
||||
<div class="empty-icon">
|
||||
<i class="fas fa-palette"></i>
|
||||
</div>
|
||||
<h4>{{ $search ? 'Keine Ergebnisse' : 'Sammlung ist noch leer' }}</h4>
|
||||
<p>
|
||||
@if($search)
|
||||
Keine Lacke gefunden, die „{{ $search }}" entsprechen.
|
||||
@else
|
||||
Fügen Sie Ihren ersten NeoNail-Lack hinzu!
|
||||
@endif
|
||||
</p>
|
||||
<div class="d-flex gap-2 justify-content-center flex-wrap">
|
||||
<a href="{{ route('user-nail-polishes.create') }}" class="btn btn-success">
|
||||
<i class="fas fa-plus me-2"></i>Ersten Lack hinzufügen
|
||||
</a>
|
||||
<a href="{{ route('user-nail-polishes.available') }}" class="btn btn-glass">
|
||||
<i class="fas fa-search me-2"></i>Verfügbare Lacke durchsuchen
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
@endif
|
||||
|
||||
@endsection
|
||||
|
||||
Reference in New Issue
Block a user