@extends('layouts.app') {{-- Customize layout sections --}} @section('subtitle', 'TABLE NUMBERS') @section('content_header_title', 'TABLE NUMBERS') @section('content_header_subtitle', 'UPDATE') {{-- Content body: main page content --}} @section('content_body') {{html()->form('POST', route('table-number.update', encrypt($table_number->id)))->open()}}

UPDATE TABLE NUMBER

{{html()->label('Table Number', 'table_number')}} {{html()->text('table_number', $table_number->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', $table_number->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