@extends('layouts/master') @section('title') {{ $modpack->name }} - Technic Solder @stop @section('content')
Editing Modpack: {{ $modpack->name }}
@if ($errors->all())
@foreach ($errors->all() as $error) {{ $error }}
@endforeach
@endif

Modpack Management

Edit your modpack settings here. You are required to delete and re-import your pack on the Technic Platform when changing the Modpack slug



hidden ? ' checked' : '') }}> Hidden modpacks will not show up in the API response for the modpack list regardless of whether or not a client has access to the modpack.
private ? ' checked' : '') }}> Private modpacks will only be available to clients that are linked to this modpack. You can link clients below. You can also individually mark builds as private.
@if ($modpack->private || $modpack->private_builds())

Client Access

Check the clients below you want to have access to this modpack if anything is set to private.

@empty ($allClients)
No Clients to add
@else @foreach ($allClients as $client)
id, $currentClients) ? ' checked' : '') }}> {{ $client->name }}
@endforeach @endif @endif

Image Management

Modpack art (logo, icon and background images) are handled entirely by the Technic Platform.

To change your modpack art you should go to your modpack settings in Platform and choose the "Resources" section.


{!! Form::submit('Save Modpack', ['class' => 'btn btn-success']) !!} {!! Html::link('modpack/delete/' . $modpack->id, 'Delete Modpack', ['class' => 'btn btn-danger']) !!} {!! Html::link(URL::previous(), 'Go Back', ['class' => 'btn btn-primary']) !!}
{!! Form::close() !!}
@endsection