{{-- resources/views/admin/promos/create.blade.php --}} @extends('layouts.admin') @section('title', 'Add Promotion') @section('page_title', 'Add Promotion') @section('icon', 'fa-tag') @section('breadcrumb') @endsection @section('content')
Add New Promotion
Back to List
@csrf
Basic Information
@error('name')
{{ $message }}
@enderror
@error('type')
{{ $message }}
@enderror
% @error('discount_value')
{{ $message }}
@enderror
Enter percentage (e.g., 10 for 10%)
@error('code')
{{ $message }}
@enderror Leave blank for auto-apply promotions
@error('max_discount')
{{ $message }}
@enderror Maximum discount amount (for percentage discounts)
@error('description')
{{ $message }}
@enderror
Validity Period
@error('start_date')
{{ $message }}
@enderror
@error('end_date')
{{ $message }}
@enderror
@error('min_purchase')
{{ $message }}
@enderror Minimum order amount to apply this promo
Preview
Promotion Preview

Name: {{ old('name', 'New Promotion') }}

Type: {{ old('type', 'Percentage Discount') }}

Value: {{ old('discount_value', 0) }}

Valid: {{ old('start_date', date('d M Y')) }} - {{ old('end_date', date('d M Y', strtotime('+1 month'))) }}

@endsection @section('scripts') @endsection