@extends('layouts.app') @section("script") @section('content') @include('achievement.header')
Create New Achievement
{!! Form::open(['route' => 'achievement.store', 'class' => 'col s12', 'files' => true]) !!} {!! Form::token() !!}
book {!! Form::text('name', null, ['id' => 'name', 'class' => 'validate', 'required']) !!} {!! Form::label('name', 'Achievement Name') !!}
picture {!! Form::text('image', null, ['id' => 'image', 'class' => 'validate', 'required']) !!} {!! Form::label('image', 'Achievement Image') !!}
Select photo
{!! Form::label('bgcolor', 'Background Colour') !!}
{!! 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('Submitsend', ['type' => 'submit', 'class' => 'btn']); !!} {!! Form::close() !!}
@endsection