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

{{ $error }}

@endforeach

{{ trans('Page') }} Info

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

{!! Form::label('title', 'Title') !!}

{!! Form::label('image', 'Challenge Image') !!}

{!! Form::label('image', 'Solution Image') !!}

{!! Form::label('status', 'Status:') !!} {!! Form::radio('status', '1',true,['class' => 'minimal']) !!} Active   {!! Form::radio('status', '0','',['class' => 'minimal']) !!} InActive  
{!! Form::close() !!}
@push('scripts')