{!! Form::model($achievement, ['route' => ['achievement.update', $achievement->id], 'method' => 'PUT', 'class' => 'col s12', 'files' =>
true]) !!} {!! Form::token() !!}
book {!! Form::text('name', null, ['id' => 'name', 'class' => 'validate', 'required'])
!!} {!! Form::label('name', 'Achievement Name') !!}
{!! Form::button('add', [ 'type' => 'button', 'id' => 'add_tier', 'class'
=> 'btn-floating btn waves-effect waves-light teal right tooltipped', 'data-position' => 'left', 'data-tooltip'
=> 'Add Tier' ]) !!}
library_books
{!! Form::textarea('description', null, ['id' => 'description', 'class' => 'materialize-textarea']) !!} {!! Form::label('description
', 'Description') !!}
{!! Form::button('Submit
send', ['type' => 'submit', 'class' => 'btn']);
!!} {!! Form::close() !!}