@extends('layouts.app')
{{-- Customize layout sections --}}
@section('subtitle', 'TABLE NUMBERS')
@section('content_header_title', 'TABLE NUMBERS')
@section('content_header_subtitle', 'NEW')
{{-- Content body: main page content --}}
@section('content_body')
{{html()->form('POST', route('table-number.store'))->open()}}
{{html()->label('Table Number', 'table_number')}}
{{html()->text('table_number')->class('form-control'.($errors->has('table_number') ? ' is-invalid' : ''))->placeholder('Table Number')}}
{{$errors->first('table_number')}}
{{html()->label('Location', 'location')}}
{{html()->textarea('location')->class('form-control'.($errors->has('location') ? ' is-invalid' : ''))->placeholder('Location')}}
{{$errors->first('location')}}
{{html()->form()->close()}}
@stop
{{-- Push extra CSS --}}
@push('css')
{{-- Add here extra stylesheets --}}
@endpush
{{-- Push extra scripts --}}
@push('js')
@endpush