@extends('layouts/master') @section('title') {{ $build->version }} - {{ $build->modpack->name }} - Technic Solder @stop @section('content')
Edit Build ({{ $build->version }})
@if ($errors->all())
@foreach ($errors->all() as $error) {{ $error }}
@endforeach
@endif {!! Form::open(['url' => URL::full() ]) !!}

Edit Build

Here you can modify the properties of existing builds.

If changes are made, users will need to re-install the modpack if they have already installed this build.

Build Requirements

These are requirements that are passed onto the launcher to prevent players from playing your pack without the required minumum settings


min_memory ? ' checked' : '' }}> min_memory ? '' : ' disabled' }}> MB

Check the checkbox to enable the memory requirement.


{!! Form::submit('Update Build', ['class' => 'btn btn-success']) !!} {!! Html::link('modpack/build/'.$build->id.'?action=delete', 'Delete Build', ['class' => 'btn btn-danger']) !!} {!! Html::link('modpack/build/'.$build->id, 'Go Back', ['class' => 'btn btn-primary']) !!} {!! Form::close() !!}
@endsection @section('bottom') @endsection