@section('title') Terminal @stop @section('content-header') Terminal @stop @section('breadcrumb')
  • Core
  • Terminal
  • @stop @section('content')
    @if(!Session::has('terminal_pwd'))
    {{ Form::open(['route' => 'admin.core.terminal.auth', 'method' => 'post']) }}
    {{ Form::label('password', 'Palavra-passe') }}
    {{ Form::password('password', ['class' => 'form-control']) }}
    {{ Form::close() }}
    @else {{ Form::open(['route' => 'admin.core.terminal.execute', 'method' => 'post', 'class' => 'form-execute']) }}
    {{--
    {{ Form::label('command', 'Últimos existentes') }} {{ Form::select('command', [], null, ['class' => 'form-control select2']) }}
    --}}
    {{ Form::label('command', 'Comando a executar') }} {{ Form::text('command', null, ['class' => 'form-control', 'required']) }}
    {{ Form::close() }} @endif
    @stop @section('styles') @stop @section('scripts') {{ Html::script(asset('vendor/devbridge-autocomplete/dist/jquery.autocomplete.min.js')) }} @stop