@extends('layouts.master') @section('contain')

{{ auth()->user()->user_role == 'sub_admin' ? 'Poll Management' : 'Stock Poll Management' }}

@if (auth()->user()->user_role == 'sub_admin' || (auth()->user()->user_role == 'admin' && $is_stock < 10)) @endif
@if (count($errors) > 0)
Whoops! There were some problems with your input.

    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif {!! Form::model($role, ['method' => 'PATCH', 'route' => ['roles.update', $role->id]]) !!}
Name: {!! Form::text('name', null, ['placeholder' => 'Name', 'class' => 'form-control']) !!}
Permission:
@foreach ($permission as $value)
@endforeach
{!! Form::close() !!}
@endsection