@extends('layouts.app') @section('title') {{ __('messages.edit_meeting') }} @endsection @section('page_css') @endsection @section('content')
@include('flash::message')
@include('coreui-templates::common.errors') {{ Form::model($meeting, ['route' => ['meetings.update', $meeting->id], 'method' => 'put', 'id'=>'meetingForm']) }} {{ csrf_field() }}
@include('meetings.fields')
@endsection @section('scripts') @endsection