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

{{ $error }}

@endforeach

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

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

{!! Form::close() !!}
@include('adminlte::layouts.bikeImage.validation') @endsection @push('scripts') @endpush