@extends('backend.layouts.app')
@section('page-title', trans('app.edit_jackpot'))
@section('page-heading', $jackpot->title)
@section('breadcrumbs')
@lang('app.jackpots')
{{ $jackpot->name }}
@lang('app.edit')
@stop
@section('content')
@include('backend.partials.messages')
{!! Form::open(['route' => array('backend.jackpot.update', $jackpot->id), 'files' => true, 'id' => 'user-form']) !!}
@lang('app.jackpot_details')
@include('backend.jackpots.partials.base', ['edit' => true])
Jackpot Stat
User |
Type |
Sum |
Date |
@if (count($jackpot_stat))
@foreach ($jackpot_stat as $stat)
@include('backend.jackpots.partials.row_stat')
@endforeach
@else
@lang('app.no_records_found') |
@endif
{!! Form::close() !!}
@stop
@section('scripts')
@stop