@extends('layouts.admin') @section('title') Admin | Booth Update @endsection @section('content')

Update/Booth

Booth Update
@if(Session::has('success'))
{{ Session::get('success') }}
@endif @if(Session::has('error'))
{{ Session::get('error') }}
@endif
@csrf @method('PUT')
@if ($errors->has('title')) {{ $errors->first('title') }} @endif
@if ($errors->has('booth_number')) {{ $errors->first('booth_number') }} @endif
@if ($errors->has('size')) {{ $errors->first('size') }} @endif
@if ($errors->has('location_preferences')) {{ $errors->first('location_preferences') }} @endif
Cancel
@endsection @section('scripts')