@extends('adminlte::layouts.app') @section('htmlheader_title') {{ trans('win date') }} @endsection @section('contentheader_title') Change win date @endsection @section('main-content')
@if (Session::has('message'))
{!! Session::get('message') !!}
@endif @if (Session::has('error'))
{!! Session::get('error') !!}
@endif @if (Session::has('success'))
{!! Session::get('success') !!}
@endif @foreach ($errors->all() as $error)

{{ $error }}

@endforeach
{!! Form::open(array('url' => ('admin/win-date/store'),'method'=>'post', 'files'=>true)) !!}
{!! Form::label('windate', 'Select Win Date') !!}

{!! Form::close() !!}
@push('scripts') @endpush @endsection