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

Create discount

@csrf
@if($errors->has('name')) @endif
@if($errors->has('name'))

{{ $errors->first('name') }}

@endif
@if($errors->has('price')) @endif
@if($errors->has('price'))

{{ $errors->first('price') }}

@endif
@if($errors->has('from')) @endif
@if($errors->has('from'))

{{ $errors->first('from') }}

@endif
@if($errors->has('to')) @endif
@if($errors->has('to'))

{{ $errors->first('to') }}

@endif
@endsection