@extends('layouts.app') @section("script") @section('content') @include('gems.header')
Edit Gem
{{-- {!! Form::open(['route' => ['quotes.update', $quotes->id], 'method' => 'PUT','class' => 'col s12', 'files' => true]) !!} {!! Form::token() !!} --}} {!! Form::model($gem, ['route' => ['gems.update', $gem->id], 'class' => 'col s12', 'method' => 'PUT', 'files' => true]) !!} {!! Form::token() !!}
book {!! Form::text('name', $gem->name, ['id' => 'name', 'class' => 'validate', 'required']) !!} {!! Form::label('name', 'Name') !!}
attach_money {!! Form::number('cost', $gem->cost, ['id' => 'cost', 'class' => 'validate', 'required']) !!} {!! Form::label('cost', 'Cost') !!}
library_books {!! Form::text('description', $gem->description, ['id' => 'description', 'class' => 'validate', 'required']) !!} {!! Form::label('description', 'Description') !!}
picture {!! Form::text('active_image', null, ['id' => 'active_img', 'class' => 'validate', 'required']) !!} {!! Form::label('active_image', 'Active Image') !!}
Select photo
picture {!! Form::text('inactive_image', null, ['id' => 'inactive_img', 'class' => 'validate', 'required']) !!} {!! Form::label('inactive_image', 'Inactive Image') !!}
Select photo
{!! Form::button('Submitsend', ['type' => 'submit', 'class' => 'btn']); !!} {!! Form::close() !!}
@endsection @section('scripts')