@extends('adminlte::page') @section('css') @stop @section('content') Edit Guild Raid #{{$guild_raid->id}} {!! Form::open(['action' => ['GuildRaidController@update', $guild_raid->id], 'method' => 'PUT', 'enctype' => 'multipart/form-data', 'class' => 'form-horizontal']) !!} {!! Form::token() !!} Guild ID @foreach($guilds as $guild) @if($guild->guild_id == $guild_raid->id) {{$guild->guild_name}} @else {{$guild->guild_name}} @endif @endforeach {!! Form::label('name', 'Name', ['class' => 'col-sm-2 control-label']) !!} {!! Form::label('description', 'Description', ['class' => 'col-sm-2 control-label']) !!} {{$guild_raid->description}} {!! Form::label('items', 'Items', ['class' => 'col-sm-2 control-label']) !!} {!! Form::close() !!} @stop