@extends('layouts.master') @section('page-title') Edit booking type - {{ $bookingType->name }} @endsection @section('content') @include('common.errors') {{ Form::model($bookingType, [ 'action' => ['Guest\BookingTypeController@update', $bookingType->id]]) }} {{ method_field('PUT') }} @include('guest.booking-type.form')
{{ Form::close() }} @endsection