@extends('admin.layout.master') @section('content')
@csrf
@if ($errors->has('category_id'))
{{ $errors->first('category_id') }}
@endif
@if ($errors->has('title'))
{{ $errors->first('title') }}
@endif
@if ($errors->has('description'))
{{ $errors->first('description') }}
@endif
@if ($errors->has('price'))
{{ $errors->first('price') }}
@endif
@endsection