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

{{ __('Edit Promotion') }}/h2>

@csrf {{ method_field('PUT') }}
@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