@extends('layouts.backend') @section('top-title', 'SugarSammy: Add New Image') @section('title', 'Add New Image') @section('content')
Back to admin
Back to shows

{{Form::open(['route' => 'shows_graphics.add', 'files' => true])}} {{Form::label('image', 'Choose Image',['class' => 'control-label'])}} {{Form::file('image')}}


{{ Form::radio('use', 'top', false, array('id'=> 'top', 'label'=> 'top')) }}
{{ Form::radio('use', 'bottom', false, array('id'=> 'bottom', 'label'=> 'bottom')) }}

{{Form::submit('Save', ['class' => 'btn btn-success'])}} {{Form::close()}}
@endsection