@extends('admin.layout.master') @section('title','TABLE') @section('custom_style') @include('inventory.blade_styles.posting_blade_css') @endsection @section('content')

Create Table

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

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

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

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

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

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

@endif
Back
@endsection @section('script') @endsection