• Add Title To Character
    {!! Form::hidden('tag', $tag->tag) !!}
    {!! Form::label('character_id', 'Character:', ['class' => 'form-control-label']) !!} {!! Form::select( 'character_id', Auth::user()->characters()->get()->pluck('fullName', 'id'), null, ['class' => 'form-control'], ) !!}
    @if ($tag->getData()['type'] == 'choice')
    {!! Form::label('title_id', 'Choose a Title:', ['class' => 'form-control-label']) !!} {!! Form::select('title_id', $tag->getEditData()['titles'], null, ['class' => 'form-control']) !!}
    @endif
    {!! Form::button('Open', ['class' => 'btn btn-primary', 'name' => 'action', 'value' => 'act', 'type' => 'submit']) !!}