@extends('admin.layout.main') @section('title', isset($category) ? 'Edit Bet Category' : 'Add Bet Category') @section('content')

{{ isset($category) ? 'Edit Bet Category' : 'Add Bet Category' }}

{!! Form::model($category ?? null, [ 'route' => isset($category) ? ['bet-categories.update', $category->id] : 'bet-categories.store', 'method' => isset($category) ? 'PUT' : 'POST', ]) !!}
{!! Form::label('name', 'Name') !!} {!! Form::text('name', null, ['class' => 'form-control']) !!}
{!! Form::label('status', 'Status') !!} {!! Form::select('status', [1 => 'Active', 0 => 'Inactive'], isset($animation) ? $animation->status : 1, ['class' => 'form-control']) !!}
{!! Form::submit(isset($category) ? 'Update' : 'Create', ['class' => 'btn btn-primary']) !!} {!! Form::close() !!}
@endsection