@extends('admin.layout.app') @section('content')
{{-- Card --}}

Create Compulsary Item

@csrf {{-- School --}}
@error('school_id') {{ $message }} @enderror
{{-- Standard --}}
@error('standard_id') {{ $message }} @enderror
{{-- Image --}}
@if ($errors->has('image')) {{ $errors->first('image') }} @endif
Single image, recommended size: 500x500px. Max 2MB. Only jpg, png, jpeg allowed.
{{-- Name --}}
@if ($errors->has('name')) {{ $errors->first('name') }} @endif
{{-- MRP --}}
@if ($errors->has('mrp')) {{ $errors->first('mrp') }} @endif
{{-- Price --}}
@if ($errors->has('price')) {{ $errors->first('price') }} @endif
{{-- Quantity --}}
@if ($errors->has('quantity')) {{ $errors->first('quantity') }} @endif
{{-- Gender (checkboxes: applicable to Male and/or Female) --}}
Check one or both — if both are checked, this item applies to male and female. @if ($errors->has('gender')) {{ $errors->first('gender') }} @endif
{{-- Submit --}}
{{-- /Card --}}
@endsection {{-- AJAX Script --}}