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