@extends('layouts.admin') @section('content')

{{ __('Add Promotion') }}

@csrf
@if ($errors->has('name')) {{ $errors->first('name') }} @endif
@if ($errors->has('start_date')) {{ $errors->first('start_date') }} @endif
@if ($errors->has('end_date')) {{ $errors->first('end_date') }} @endif
@if ($errors->has('percentage')) {{ $errors->first('percentage') }} @endif
@if ($errors->has('status')) {{ $errors->first('status') }} @endif
@endsection