@extends('layouts.backend')
@section('contenido')
@include('alerts.request')
Ingresar Imagen
{!! Form::open(['route' => 'imagen.store', 'method' => 'POST','files'=>true]) !!}
{!! Form::label('imagen','Imagen') !!}
{!! Form::file('path')!!}
{!!Form::submit('Registrar',['class'=>'btn btn-primary'])!!}
{!! Form::close() !!}
@stop