@extends('layouts/contentLayoutMaster') @section('title', 'Create Role') @section('vendor-style') {{-- Page Css files --}} @endsection @section('page-style') {{-- Page Css files --}} @endsection @section('content')
{{ csrf_field() }}
@if ($errors->has('name'))

{{ $errors->first('name') }}

@endif
@if ($errors->has('description'))

{{ $errors->first('description') }}

@endif
@if ($errors->has('guard_name'))

{{ $errors->first('guard_name') }}

@endif
@endsection @section('vendor-script') {{-- Vendor js files --}} @endsection