@extends('layouts.master') @section('title',__('Create Notification')) @section('breadcum') @endsection @section('maincontent')
@if ($errors->any()) @endif
{{ __('Back') }}
{{__('Create Audio Language')}}
{!! Form::open(['method' => 'POST', 'action' => 'NotificationController@store']) !!}
{!! Form::label('title', __('Notification Title')) !!} {!! Form::text('title', null, ['class' => 'form-control', 'required' => 'required']) !!} {{ $errors->first('title') }}
{!! Form::label('description', __('Notification Description')) !!} {!! Form::text('description', null, ['class' => 'form-control', 'required' => 'required']) !!} {{ $errors->first('description') }}
@php $movie=App\Movie::orderBy('created_at', 'desc')->get();; @endphp
{!! Form::label('movie_id', __('Select Movies')) !!} {{ $errors->first('movie_id') }}
@php $livetv=App\Movie::orderBy('created_at', 'desc')->where('live',1)->get();; @endphp
{!! Form::label('livetv', __('SelectLiveTv')) !!} {{ $errors->first('livetv') }}
@php $tv=App\TvSeries::orderBy('created_at', 'desc')->get(); @endphp
{!! Form::label('tv_id', __('Select Tv Series')) !!} {{ $errors->first('tv_id') }}
@php $user=App\User::all(); @endphp
{!! Form::label('user_id', __('Select Users')) !!} {{ $errors->first('user_id') }}
{!! Form::close() !!}
@endsection @section('script') @endsection