{!! Form::open(['route' => 'phrase.store', 'class' => 'col s12', 'files' => true]) !!} {{-- HTML Injected through phrase-form.js
--}}
{!! Form::select('courseId', $courses, null, ['id' => 'courseId' ]); !!}
{!! Form::label('courseId','Course') !!}
{!! Form::select('voice_type', $voice_type, 'female_voice', ['id' => 'voice_type' ]); !!}
{!! Form::label('voice_type','Voice Type') !!}
{{-- Add more phrase element through phrase-form.js --}}
{!! Form::button('add', [ 'type' => 'button', 'id' => 'add_phrase', 'class'
=> 'btn-floating btn waves-effect waves-light teal right tooltipped', 'data-position' => 'left', 'data-tooltip'
=> 'Add Phrase' ]) !!}
{!! Form::button('Submit
send', ['type' => 'submit', 'class' => 'btn']);
!!} {!! Form::close() !!}