@extends('layout.app') @section('content')
Back
Master
Restroom Location QR
Edit Restroom Location QR
Edit Restroom Location QR
@csrf
State
@foreach($states as $state)
state_id == $state->id ? 'selected' : '' }}>{{ $state->state }}
@endforeach
City
@foreach($cities as $state)
city_id == $state->id ? 'selected' : '' }}>{{ $state->city }}
@endforeach
Airport
@foreach($location as $state)
location_id == $state->id ? 'selected' : '' }}>{{ $state->location }}
@endforeach
Terminal
@foreach($terminal as $state)
terminal_id == $state->id ? 'selected' : '' }}>{{ $state->terminal }}
@endforeach
Restroom Location
@error('category')
{{ $message }}
@enderror
@if(session('success'))
{{ session('success') }}
@endif
Update
@endsection