@extends('admin.layouts.master') @section('content')
@csrf
@if ($errors->has('title'))

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

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

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

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

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

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

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

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

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

@endif
@error('image')

{{ $message }}

@enderror
@endsection