@extends('layouts.frontend') @section('content')
{{ trans('global.create') }} {{ trans('cruds.shippingLuckyDraw.title_singular') }}
@method('POST') @csrf
@if($errors->has('customer_luck_draw_data'))
{{ $errors->first('customer_luck_draw_data') }}
@endif {{ trans('cruds.shippingLuckyDraw.fields.customer_luck_draw_data_helper') }}
@if($errors->has('lucky_draw_items'))
{{ $errors->first('lucky_draw_items') }}
@endif {{ trans('cruds.shippingLuckyDraw.fields.lucky_draw_items_helper') }}
@if($errors->has('courier_name'))
{{ $errors->first('courier_name') }}
@endif {{ trans('cruds.shippingLuckyDraw.fields.courier_name_helper') }}
@if($errors->has('tracking_number'))
{{ $errors->first('tracking_number') }}
@endif {{ trans('cruds.shippingLuckyDraw.fields.tracking_number_helper') }}
@if($errors->has('description'))
{{ $errors->first('description') }}
@endif {{ trans('cruds.shippingLuckyDraw.fields.description_helper') }}
@if($errors->has('status'))
{{ $errors->first('status') }}
@endif {{ trans('cruds.shippingLuckyDraw.fields.status_helper') }}
@endsection @section('scripts') @endsection