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

{{ $error }}

@endforeach

{{ trans('Bike Features') }} Info

{!! Form::open(array('url' => ('admin/bikefeatures/store'),'method'=>'POST', 'files'=>true)) !!}
{!! Form::select('bike_id', [null=>''] + $bikes, null,['class' => 'form-control bike','id' => 'bike_id']) !!}

{!! Form::label('image', 'Image') !!}
{!! Form::label('title', 'Title') !!} {!! Form::text('title', null, array('class' => 'form-control','placeholder'=>'Enter title','id'=>'title')) !!}
{!! Form::label('details', 'Details') !!} {!! Form::textarea('details',null,['class'=>'form-control details', 'rows' => 6, 'cols' => 40,'placeholder'=>'Enter details', 'id' => 'details']) !!}
{!! Form::close() !!}
@include('adminlte::layouts.bikeFeatures.validation') @endsection @push('scripts') @endpush