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

{{ $error }}

@endforeach
{!! Form::open(array('url' => ('admin/bikeimage/store'),'method'=>'POST', 'files'=>true)) !!}
{!! Form::select('bike_id', [null=>''] + $bikes, $bikeimage['id'],['class' => 'form-control bike','id' => 'name']) !!}
@if(count($bikeimage['bike_image']) > 0)
@endif
{!! Form::close() !!}
@include('adminlte::layouts.bikeImage.validation') @endsection @push('scripts') @endpush