@extends('author.dashboard') @section('title', 'Create Element') @section('stylesheets') @endsection @section('content')

Dashboard OPALESCE Version 1.0

{!! Breadcrumbs::render('authaddmicrounitselements', $microunit) !!}

Add Element to Microunit: {{$microunit->muid}}

@if (count($errors) > 0)
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif {!! Form::open(['route'=> ['authpanel.elmu.store', $microunit->id], 'method'=>'POST', 'class'=> 'form-horizontal', 'files'=> true ]) !!}
{{ Form::label('title', 'Title *', ['class'=>'col-lg-1 control-label', 'for'=>'validate-title']) }}
{{--
--}}
{{ Form::label('element_id', 'Element', ['class'=>'col-lg-2 control-label', 'for'=>'validate-element']) }}
{{ Form::label('status_id', 'Status', ['class'=>'col-lg-2 control-label', 'for'=>'validate-status']) }}
{{ Form::label('language_id', 'Language', ['class'=>'col-lg-2 control-label', 'for'=>'validate-language']) }}
{{ Form::label('filename', 'File', ['class'=>'col-lg-2 control-label', 'for'=>'validate-language']) }}
{{ Form::label('description', 'Description', ['class'=>'col-lg-1 control-label', 'for'=>'validate-desc']) }}
{{ Form::label('short_description', 'Short Description', ['class'=>'col-lg-1 control-label short-description', 'for'=>'validate-desc']) }}
{{ Form::label('audiofile', 'Audio File', ['class'=>'col-lg-1 control-label audio-file', 'for'=>'validate-desc']) }}
{!! Form::close() !!}
@endsection @section('javascripts') @endsection