@extends('adminlte::layouts.app') @section('htmlheader_title') {{ trans('Bike Features Update') }} @endsection @section('contentheader_title') Update Bike Features "" @endsection @section('main-content')
@foreach ($errors->all() as $error)

{{ $error }}

@endforeach
{!! Form::open(array('url' => ('admin/bikefeatures/store'),'method'=>'post', 'files'=>true)) !!}
{!! Form::select('bike_id', [null=>''] + $bikes, $bikefeatures['bike_id'],['class' => 'form-control bike','id' => 'bike_id']) !!}
{!! Form::label('image', 'Image') !!}
@if($bikefeatures->image != '') {{ trans('') }} @endif
{!! Form::label('title', 'Title') !!} {!! Form::text('title', $bikefeatures->title, array('class' => 'form-control','placeholder'=>'Enter title','id'=>'title')) !!}
{!! Form::label('details', 'Details') !!} {!! Form::textarea('details',$bikefeatures->details,['class'=>'form-control details', 'rows' => 6, 'cols' => 40,'placeholder'=>'Enter details', 'id' => 'details']) !!}
{!! Form::close() !!}
@include('adminlte::layouts.bikeImage.validation') @endsection @push('scripts') @endpush