@extends('../../master_layout/admin_master') @section('title') {{config('constants.APP_NAME')}} Manage Custom Title @endsection @section('content')

Custom Title

@if(session('message'))
@if(session('message.type')=='danger')

Sorry! {!! session('message.text') !!}

@else

Success! {!! session('message.text') !!}

@endif
@endif
@csrf
@if(isset($custom_titles) && !empty($custom_titles)) @foreach($custom_titles as $key=>$custom_title)
@endforeach @endif
@endsection @section('custom_js') @endsection