@extends('adminlte::page') @section('css') @stop @section('content') Edit Guild Raid Wave #{{$wave->id}} {!! Form::open(['action' => ['GuildRaidWaveController@update', $GuildRaidID,$ChapterID,$MissionID,$wave->id], 'method' => 'PUT', 'enctype' => 'multipart/form-data', 'class' => 'form-horizontal']) !!} {!! Form::token() !!} {!! Form::label('name', 'Name', ['class' => 'col-sm-2 control-label']) !!} {!! Form::label('number', 'Number', ['class' => 'col-sm-2 control-label']) !!} {!! Form::label('description', 'Description', ['class' => 'col-sm-2 control-label']) !!} {{$wave->description}} {!! Form::label('status', 'Status', ['class' => 'col-sm-2 control-label']) !!} {!! Form::close() !!} @stop