{!! Form::label('title', 'Title') !!}
{!! Form::text('title', null, ['class' => 'form-control', 'data-parsley-required' => 'true', 'data-parsley-trigger' => 'change', 'placeholder' => 'Title', 'required', 'maxlength' => '100']) !!}
{!! Form::label('hours', 'Hours') !!}
{!! Form::number('hours', null, ['class' => 'form-control', 'data-parsley-required' => 'true', 'data-parsley-trigger' => 'change', 'placeholder' => 'Hours', 'required', 'maxlength' => '100']) !!}
{!! Form::label('price', 'Price') !!}
{!! Form::number('price', null, ['class' => 'form-control', 'data-parsley-required' => 'true', 'data-parsley-trigger' => 'change', 'placeholder' => 'Price', 'required']) !!}
{{--
Select Item
@foreach ($items as $key => $value)
1
0
{{ $value }} @endforeach
--}} {!! Form::label('is_paid', 'Is Paid') !!}
{!! Form::select('is_paid', array('1' => 'True', '0' => 'False'), null,['çlass'=>'form-control']); !!}
{!! Form::label('Course Badge', 'Course Badge') !!}
Fatal error
: Call to undefined function asset() in
/home/developmenthatin/public_html/hrs_backend/resources/views/admin/courses/partial/form.blade.php
on line
80