@extends('admin.layout.master') @section('content')
@csrf
@if ($errors->has('name'))
{{ $errors->first('name') }}
@endif
@if ($errors->has('brand'))
{{ $errors->first('brand') }}
@endif
@if ($errors->has('cloth_cat_id'))
{{ $errors->first('cloth_cat_id') }}
@endif
@if ($errors->has('cloth_material_id'))
{{ $errors->first('cloth_material_id') }}
@endif
@if ($errors->has('upc'))
{{ $errors->first('upc') }}
@endif
{{-- @if ($errors->has('cloth_cat_id'))--}} {{--
{{ $errors->first('cloth_cat_id') }}
--}} {{-- @endif--}}
@if ($errors->has('other1'))
{{ $errors->first('other1') }}
@endif
@if ($errors->has('other2'))
{{ $errors->first('other2') }}
@endif
@if ($errors->has('other3'))
{{ $errors->first('other3') }}
@endif
@if ($errors->has('other4'))
{{ $errors->first('other4') }}
@endif
@if ($errors->has('other5'))
{{ $errors->first('other5') }}
@endif
@endsection